This class identifies an arc of the digraph. It also serves as a base class of the arc iterators, thus they will convert to this type.
#include <lemon/concepts/digraph.h>
Public Member Functions | |
Arc () | |
Default constructor. | |
Arc (const Arc &) | |
Arc (Invalid) | |
bool | operator== (Arc) const |
Equality operator. | |
bool | operator!= (Arc) const |
Inequality operator. | |
bool | operator< (Arc) const |
Artificial ordering operator. |
Arc | ( | ) | [inline] |
bool operator== | ( | Arc | ) | const [inline] |
Two iterators are equal if and only if they point to the same object or both are invalid.
bool operator!= | ( | Arc | ) | const [inline] |
bool operator< | ( | Arc | ) | const [inline] |
To allow the use of digraph descriptors as key type in std::map or similar associative container we require this.