[][src]Trait btree_graph::GetVertexValue

pub trait GetVertexValue<V, E> where
    E: Ord
{ pub fn get_vertex_value(&self, x: V) -> Option<&BTreeSet<E>>; }

GetVertexValue returns the value associated with the vertex x.

Required methods

pub fn get_vertex_value(&self, x: V) -> Option<&BTreeSet<E>>[src]

Loading content...

Implementors

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

Loading content...