#include <lemon/concepts/graph_components.h>
Public Member Functions | |
GraphItemIt () | |
Default constructor. | |
GraphItemIt (const GraphItemIt &) | |
GraphItemIt (const _Graph &) | |
Sets the iterator to the first item. | |
GraphItemIt (Invalid) | |
Invalid constructor & conversion. | |
GraphItemIt & | operator= (const GraphItemIt &) |
Assign operator for items. | |
GraphItemIt & | operator++ () |
Next item. | |
bool | operator== (const GraphItemIt &) const |
Equality operator. | |
bool | operator!= (const GraphItemIt &) const |
Inequality operator. |
GraphItemIt | ( | ) | [inline] |
GraphItemIt | ( | const GraphItemIt< _Graph, _Item > & | ) | [inline] |
Copy constructor.
GraphItemIt | ( | const _Graph & | ) | [inline, explicit] |
Sets the iterator to the first item of the
graph.
GraphItemIt | ( | Invalid | ) | [inline] |
This constructor initializes the item to be invalid.
GraphItemIt& operator= | ( | const GraphItemIt< _Graph, _Item > & | ) | [inline] |
The items are assignable.
GraphItemIt& operator++ | ( | ) | [inline] |
Assign the iterator to the next item.
bool operator== | ( | const GraphItemIt< _Graph, _Item > & | ) | const [inline] |
Two iterators are equal if and only if they point to the same object or both are invalid.
bool operator!= | ( | const GraphItemIt< _Graph, _Item > & | ) | const [inline] |