Type Alias SlotNodeMap

Source
pub type SlotNodeMap<N, NI = NodeIndex, EI = EdgeIndex> = SlotMap<NI, Node<N, EI>>;
Available on (crate features alloc or slotmap) and crate feature slotmap only.
Expand description

A type alias for a SlotMap that maps a certain key type (the default is NodeIndex) to Node structures.

This is intended to be used as a node map type by the Graph type.

Aliased Typeยง

pub struct SlotNodeMap<N, NI = NodeIndex, EI = EdgeIndex> { /* private fields */ }