logo
pub trait GraphEdgesEnumerableInterface: GraphNodesNominalInterface + GraphEdgesNominalInterface {
    fn edges<'a, 'b>(
        &'a self
    ) -> Box<dyn Iterator<Item = (<Self::EdgeHandle as HasId>::Id, &'a Self::EdgeHandle)> + 'b, Global>
    where
        'a: 'b
; fn nedges(&self) -> usize { ... } }
Expand description

Graph edges of which is possible to enumerate.

Required Methods

Iterate over all edges.

Provided Methods

Number of edges. Size of the graph.

Implementors