This iterator goes through each node of the graph. Its usage is quite simple, for example, you can count the number of nodes in a graph g of type Graph like this: 
#include <lemon/concepts/graph.h>
 Inheritance diagram for Graph::NodeIt:Public Member Functions | |
| NodeIt () | |
| Default constructor.   | |
| NodeIt (const NodeIt &n) | |
| NodeIt (Invalid) | |
| Invalid constructor & conversion.   | |
| NodeIt (const Graph &) | |
| Sets the iterator to the first node.   | |
| NodeIt (const Graph &, const Node &) | |
| Sets the iterator to the given node.   | |
| NodeIt & | operator++ () | 
| Next node.   | |
  Public Member Functions inherited from Graph::Node | |
| Node () | |
| Default constructor.   | |
| Node (const Node &) | |
| Node (Invalid) | |
| Invalid constructor & conversion.   | |
| bool | operator== (Node) const | 
| Equality operator.   | |
| bool | operator!= (Node) const | 
| bool | operator< (Node) const | 
| Artificial ordering operator.   | |
      
  | 
  inline | 
Default constructor.
Sets the iterator to the given node of the given digraph.
      
  | 
  inline | 
Assign the iterator to the next node.
 1.8.2