Type Definition traitgraph::walks::VecNodeWalk

source ·
pub type VecNodeWalk<Graph> = Vec<<Graph as GraphBase>::NodeIndex>;
Expand description

A node walk that is represented as a vector of node indices.

Trait Implementations§

source§

impl<Graph: GraphBase> NodeWalk<Graph, [<Graph as GraphBase>::NodeIndex]> for VecNodeWalk<Graph>

source§

fn is_proper_subwalk_of(&self, other: &Self) -> boolwhere Graph::NodeIndex: Eq,

Returns true if this is a proper subwalk of the given walk. Proper means that the walks are not equal.