This iterator goes through each arc of a digraph. Its usage is quite simple, for example you can count the number of arcs in a digraph g of type Digraph as follows:
int count=0; for(Digraph::ArcIt e(g); e!=INVALID; ++e) ++count;
#include <lemon/concepts/digraph.h>
Inheritance diagram for Digraph::ArcIt:Public Member Functions | |
| ArcIt () | |
| Default constructor. | |
| ArcIt (const ArcIt &e) | |
| ArcIt (Invalid) | |
| ArcIt (const Digraph &g) | |
| This constructor sets the iterator to the first arc. | |
| ArcIt (const Digraph &, const Arc &) | |
| Arc -> ArcIt conversion. | |
| ArcIt & | operator++ () |
| Next arc. | |
| ArcIt | ( | ) | [inline] |
This constructor sets the iterator to the first arc of g.
| g | the digraph |
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