pub type FrozenBTreeSlotMapGraph<N, E, NI, EI = EdgeIndex> = FrozenBTreeNodeGraph<N, E, NI, EI, SlotEdgeMap<E, NI, EI>>;Available on crate feature
alloc and crate feature slotmap and (crate features alloc or slotmap) only.Expand description
A type alias for a FrozenGraph that uses a BTreeMap to
store its nodes and a SlotMap to store its edges.
The default edge index type is EdgeIndex.
Aliased Typeยง
pub struct FrozenBTreeSlotMapGraph<N, E, NI, EI = EdgeIndex> { /* private fields */ }