pub type DiGraph<N, S = FixedHasher> = Graph<true, N, S>;
Expand description
A Graph
with directed edges of some GraphNodeId
N
.
For example, an edge from 1 to 2 is distinct from an edge from 2 to 1.
Aliased Typeยง
pub struct DiGraph<N, S = FixedHasher> { /* private fields */ }