pub type EdgeIter<'a> = Map<Zip<Iter<'a, VertexId>, Iter<'a, VertexId>>, fn((&'a VertexId, &'a VertexId)) -> (VertexId, VertexId)>;Expand description
Iterator over graph edges as (from, to) pairs.
Aliased Typeยง
pub struct EdgeIter<'a> { /* private fields */ }