pub trait UndirectedNeighborsWithValues<NI, EV> where
    NI: Idx
{ fn neighbors_with_values(&self, node: NI) -> &[Target<NI, EV>]; }

Required methods

Returns a slice of all nodes connected to the given node.

Implementors