[][src]Trait btree_graph::Edges

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

Edges returns the set edges which comprise the graph.

Required methods

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

Loading content...

Implementors

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

Loading content...