pub type UnGraphMap<N, E, S = RandomState> = GraphMap<N, E, Undirected, S>;
Expand description
A GraphMap
with undirected edges.
For example, an edge between 1 and 2 is equivalent to an edge between 2 and 1.
Aliased Typeยง
struct UnGraphMap<N, E, S = RandomState> { /* private fields */ }