Type Alias SlotEdgeMap

Source
pub type SlotEdgeMap<E, NI = NodeIndex, EI = EdgeIndex> = SlotMap<EI, Edge<E, NI, 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 EdgeIndex) to Edge structures.

This is intended to be used as an edge map type by the Graph type.

Aliased Typeยง

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