Expand description
Simple adjacency list.
Structs
- Adjacency list edge index type, a pair of integers.
- A reference to an edge of the graph.
- An iterator over the
EdgeReference
of all the edges of the graph. - An adjacency list with labeled edges.
- An iterator over the indices of the neighbors of a node.
- An iterator over all node indices in the graph.
- An Iterator over the indices of the outgoing edges from a node.
- Iterator over the
EdgeReference
of the outgoing edges from a node.
Traits
- Trait for the unsigned integer type used for node and edge indices.
Type Aliases
- The default integer type for graph indices.
u32
is the default to reduce the size of the graph’s data and improve performance in the common case. - Adjacency list node index type, a plain integer.
- A very simple adjacency list with no node or label weights.