This iterator goes through each arc of a graph. Its usage is quite simple, for example you can count the number of arcs in a graph g of type Graph as follows:
int count=0; for(Graph::ArcIt e(g); e!=INVALID; ++e) ++count;
#include <lemon/concepts/graph.h>
Inheritance diagram for Graph::ArcIt:Public Member Functions | |
| ArcIt () | |
| Default constructor. | |
| ArcIt (const ArcIt &e) | |
| ArcIt (Invalid) | |
| ArcIt (const Graph &g) | |
| This constructor sets the iterator to the first arc. | |
| ArcIt (const Graph &, const Arc &) | |
| Arc -> ArcIt conversion. | |
| ArcIt & | operator++ () |
| Next arc. | |
| ArcIt | ( | ) | [inline] |
This constructor sets the iterator to the first arc of g.
| g | the graph |
Sets the iterator to the value of the trivial iterator e. This feature necessitates that each time we iterate the arc-set, the iteration order is the same.
| ArcIt& operator++ | ( | ) | [inline] |
Assign the iterator to the next arc.
1.7.3