dune-common 2.9.0
|
A constant random access iterator for the Dune::ArrayList class. More...
#include <dune/common/arraylist.hh>
Public Types | |
typedef A::value_type | MemberType |
The member type. | |
typedef A::difference_type | difference_type |
typedef A::size_type | size_type |
using | reference = typename A::value_type & |
using | const_reference = typename A::value_type const & |
using | iterator_category = std::random_access_iterator_tag |
using | value_type = typename std::remove_const< V >::type |
using | pointer = V * |
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 | |
bool | equals (const ConstArrayListIterator< MemberType, N, A > &other) const |
Comares to iterators. | |
void | increment () |
Increment the iterator. | |
void | decrement () |
decrement the iterator. | |
void | advance (difference_type n) |
difference_type | distanceTo (const ConstArrayListIterator< T, N, A > &other) const |
const_reference | elementAt (size_type i) const |
Get the value of the list at an arbitrary position. | |
const_reference | dereference () const |
Access the element at the current position. | |
ConstArrayListIterator () | |
ConstArrayListIterator (const ArrayListIterator< T, N, A > &other) | |
Reference | operator* () const |
Dereferencing operator. | |
Pointer | operator-> () const |
Reference | operator[] (DifferenceType n) const |
Get the element n positions from the current one. | |
DerivedType & | operator++ () |
Preincrement operator. | |
DerivedType | operator++ (int) |
Postincrement operator. | |
DerivedType & | operator+= (DifferenceType n) |
DerivedType | operator+ (DifferenceType n) const |
DerivedType & | operator-- () |
Predecrement operator. | |
DerivedType | operator-- (int) |
Postdecrement operator. | |
DerivedType & | operator-= (DifferenceType n) |
DerivedType | operator- (DifferenceType n) const |
Static Public Attributes | |
static constexpr int | chunkSize_ = (N > 0) ? N : 1 |
The number of elements in one chunk of the list. | |
A constant random access iterator for the Dune::ArrayList class.
using Dune::ConstArrayListIterator< T, N, A >::const_reference = typename A::value_type const& |
|
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::ConstArrayListIterator< T, N, A >::difference_type |
|
inherited |
The type of the difference between two positions.
|
inherited |
typedef A::value_type Dune::ConstArrayListIterator< T, N, A >::MemberType |
The member type.
|
inherited |
|
inherited |
The pointer to the Value.
using Dune::ConstArrayListIterator< T, N, A >::reference = typename A::value_type & |
|
inherited |
The type of the reference to the values accessed.
typedef A::size_type Dune::ConstArrayListIterator< T, N, A >::size_type |
|
inherited |
The type of value accessed through the iterator.
|
inherited |
|
inline |
|
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. |
|
staticconstexpr |
The number of elements in one chunk of the list.
This has to be at least one. The default is 100.