#include <lemon/concept/graph_component.h>
Public Member Functions | |
GraphIncIterator () | |
Default constructor. | |
GraphIncIterator (GraphIncIterator const &gi) | |
Copy constructor. | |
GraphIncIterator (const Graph &, const typename Graph::Node &) | |
GraphIncIterator (Invalid) | |
Invalid constructor & conversion. | |
GraphIncIterator & | operator= (GraphIncIterator const &) |
Assign operator for nodes. | |
GraphIncIterator & | operator++ () |
Next edge. | |
bool | operator== (const GraphIncIterator &) const |
Equality operator. | |
bool | operator!= (const GraphIncIterator &) const |
Inequality operator. |
|
|
|
Copy constructor. |
|
Sets the iterator to the first edge incoming into or outgoing from the node. |
|
This constructor initializes the item to be invalid.
|
|
The nodes are assignable. |
|
Assign the iterator to the next node. |
|
Two iterators are equal if and only if they point to the same object or both are invalid. |
|
|