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