[][src]Trait btree_graph::Vertices

pub trait Vertices<T> where
    T: Ord
{ pub fn vertices(&self) -> BTreeSet<&T>; }

Vertices returns the set of the vertices which comprise the graph.

Required methods

pub fn vertices(&self) -> BTreeSet<&T>[src]

Loading content...

Implementors

impl<V, E> Vertices<V> for BTreeGraph<V, E> where
    V: Ord,
    E: Ord
[src]

Loading content...