#include <iteratorfacades.hh>
Public Types | |
typedef T | DerivedType |
The type of derived iterator. | |
typedef V | Value |
The type of value accessed through the iterator. | |
typedef V * | Pointer |
The pointer to the Value. | |
typedef D | DifferenceType |
The type of the difference between two positions. | |
typedef R | Reference |
The type of the reference to the values accessed. | |
Public Member Functions | |
Reference | operator* () const |
Dereferencing operator. | |
DerivedType & | operator++ () |
Preincrement operator. | |
DerivedType | operator++ (int) |
Postincrement operator. | |
DerivedType & | operator-- () |
Preincrement operator. | |
DerivedType | operator-- (int) |
Postincrement operator. |
typedef T Dune::BidirectionalIteratorFacade< T, V, R, D >::DerivedType |
The type of derived iterator.
The iterator has to define following functions have to be present:
// Access the value referred to. Reference dereference() const; // Compare for equality with j bool equals(j); // position the iterator at the next element. void increment() // position the iterator at the previous element. void decrement()
For an elaborate explanation see the STL Documentation