|
dune-common
2.3.1
|
A random access iterator for the Dune::ArrayList class. More...
#include <dune/common/arraylist.hh>

Public Types | |
| enum | { chunkSize_ = (N > 0) ? N : 1 } |
| typedef A::value_type | MemberType |
| The member type. More... | |
| typedef A::difference_type | difference_type |
| typedef A::size_type | size_type |
| typedef A::reference | reference |
| typedef A::const_reference | const_reference |
| typedef ArrayListIterator< T, N, A > | DerivedType |
| The type of derived iterator. More... | |
| typedef A::value_type | Value |
| The type of value accessed through the iterator. More... | |
| typedef A::value_type * | Pointer |
| The pointer to the Value. More... | |
| typedef A::difference_type | DifferenceType |
| The type of the difference between two positions. More... | |
| typedef A::reference | Reference |
| The type of the reference to the values accessed. More... | |
Public Member Functions | |
| bool | equals (const ArrayListIterator< MemberType, N, A > &other) const |
| Comares two iterators. More... | |
| bool | equals (const ConstArrayListIterator< MemberType, N, A > &other) const |
| Comares two iterators. More... | |
| void | increment () |
| Increment the iterator. More... | |
| void | decrement () |
| decrement the iterator. More... | |
| reference | elementAt (size_type i) const |
| Get the value of the list at an arbitrary position. More... | |
| reference | dereference () const |
| Access the element at the current position. More... | |
| void | eraseToHere () |
| Erase all entries before the current position and the one at the current position. More... | |
| size_type | position () |
| void | advance (difference_type n) |
| difference_type | distanceTo (const ArrayListIterator< T, N, A > &other) const |
| ArrayListIterator< T, N, A > & | operator= (const ArrayListIterator< T, N, A > &other) |
| ArrayListIterator () | |
| Standard constructor. More... | |
| Reference | operator* () const |
| Dereferencing operator. More... | |
| Pointer | operator-> () const |
| Reference | operator[] (DifferenceType n) const |
| Get the element n positions from the current one. More... | |
| DerivedType & | operator++ () |
| Preincrement operator. More... | |
| DerivedType | operator++ (int) |
| Postincrement operator. More... | |
| DerivedType & | operator+= (DifferenceType n) |
| DerivedType | operator+ (DifferenceType n) const |
| DerivedType & | operator-- () |
| Predecrement operator. More... | |
| DerivedType | operator-- (int) |
| Postdecrement operator. More... | |
| DerivedType & | operator-= (DifferenceType n) |
| DerivedType | operator- (DifferenceType n) const |
Friends | |
| class | ArrayList< T, N, A > |
| class | ConstArrayListIterator< T, N, A > |
A random access iterator for the Dune::ArrayList class.
| typedef A::const_reference Dune::ArrayListIterator< T, N, A >::const_reference |
|
inherited |
The type of derived iterator.
The iterator has to define following functions have to be present:
For an elaborate explanation see the STL Documentation
| typedef A::difference_type Dune::ArrayListIterator< T, N, A >::difference_type |
|
inherited |
The type of the difference between two positions.
| typedef A::value_type Dune::ArrayListIterator< T, N, A >::MemberType |
The member type.
|
inherited |
The pointer to the Value.
| typedef A::reference Dune::ArrayListIterator< T, N, A >::reference |
|
inherited |
The type of the reference to the values accessed.
| typedef A::size_type Dune::ArrayListIterator< T, N, A >::size_type |
|
inherited |
The type of value accessed through the iterator.
| anonymous enum |
|
inline |
Standard constructor.
|
inlineinherited |
Dereferencing operator.
|
inlineinherited |
|
inlineinherited |
Preincrement operator.
|
inlineinherited |
Postincrement operator.
|
inlineinherited |
|
inlineinherited |
|
inlineinherited |
Predecrement operator.
|
inlineinherited |
Postdecrement operator.
|
inlineinherited |
|
inlineinherited |
|
inlineinherited |
Get the element n positions from the current one.
| n | The distance to the element. |
|
inline |
|
friend |
|
friend |
1.8.7