This iterator goes through each arc of the digraph. Its usage is quite simple, for example, you can count the number of arcs in a digraph g
of type Digraph
as follows:
#include <lemon/concepts/digraph.h>
Public Member Functions | |
ArcIt () | |
Default constructor. | |
ArcIt (const ArcIt &e) | |
ArcIt (Invalid) | |
Invalid constructor & conversion. | |
ArcIt (const Digraph &g) | |
Sets the iterator to the first arc. | |
ArcIt (const Digraph &, const Arc &) | |
Sets the iterator to the given arc. | |
ArcIt & | operator++ () |
Next arc. | |
Public Member Functions inherited from Digraph::Arc | |
Arc () | |
Default constructor. | |
Arc (const Arc &) | |
Arc (Invalid) | |
Invalid constructor & conversion. | |
bool | operator== (Arc) const |
Equality operator. | |
bool | operator!= (Arc) const |
bool | operator< (Arc) const |
Artificial ordering operator. | |
|
inline |
Default constructor.
Sets the iterator to the given arc of the given digraph.
|
inline |
Assign the iterator to the next arc.