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