Expand description
StableGraph keeps indices stable across removals.
Depends on feature = "stable_graph".
Re-exports§
pub use graph::NodeIndex;pub use graph::EdgeIndex;pub use graph::GraphIndex;pub use graph::IndexType;pub use graph::DefaultIx;pub use graph::node_index;pub use graph::edge_index;
Structs§
- Edge
Indices - Iterator over the edge indices of a graph.
- Edge
Reference - Reference to a
StableGraphedge. - Edge
References - Iterator over all edges of a graph.
- Edges
- Iterator over the edges of from or to a node
- Neighbors
- Iterator over the neighbors of a node.
- Node
Indices - Iterator over the node indices of a graph.
- Node
References - Iterator over all nodes of a graph.
- Stable
Graph StableGraph<N, E, Ty, Ix>is a graph datastructure using an adjacency list representation.- Walk
Neighbors - A “walker” object that can be used to step through the edge list of a node.
Functions§
Type Aliases§
- Stable
DiGraph - A
StableGraphwith directed edges. - Stable
UnGraph - A
StableGraphwith undirected edges.