Skip to main content

UnweightedList

Type Alias UnweightedList 

Source
pub type UnweightedList<Ix> = List<(), Ix>;
Expand description

A very simple adjacency list with no node or label weights.

Aliased Type§

pub struct UnweightedList<Ix> {
    suc: Vec<Vec<WSuc<(), Ix>>>,
}

Fields§

§suc: Vec<Vec<WSuc<(), Ix>>>