pub trait Values<'slf, V, Ix = DefaultIndexType>{
// Required method
fn values(
&'slf self,
) -> Box<dyn Iterator<Item = (NodeIndex<Ix>, &'slf V)> + 'slf>;
}
Expand description
Trees implementing this trait are able to return an iterator over the values stored by the implementing struct.