for (ConEdgeIt<Graph> it(g, src, trg); it != INVALID; ++it) { ... }
#include <lemon/graph_utils.h>
Public Member Functions | |
ConEdgeIt (const Graph &g, Node u, Node v) | |
Constructor. | |
ConEdgeIt (const Graph &g, Edge e) | |
Constructor. | |
ConEdgeIt & | operator++ () |
Increment operator. |
ConEdgeIt | ( | const Graph & | g, | |
Node | u, | |||
Node | v | |||
) | [inline] |
Construct a new ConEdgeIt iterating on the edges which connects the u
and v
node.
ConEdgeIt | ( | const Graph & | g, | |
Edge | e | |||
) | [inline] |
Construct a new ConEdgeIt which continues the iterating from the e
edge.
ConEdgeIt& operator++ | ( | ) | [inline] |
It increments the iterator and gives back the next edge.