pub trait NodeValues<NI, NV> where
    NI: Idx
{ fn node_value(&self, node: NI) -> &NV; }
Expand description

A graph that allows storing a value per node.

Required methods

Implementors