|
dune-common 2.8.0
|
Loading...
Searching...
No Matches
Dune::ConstArrayListIterator< T, N, A > Class Template Reference
A constant random access iterator for the Dune::ArrayList class. More...
#include <dune/common/arraylist.hh>
Inheritance diagram for Dune::ConstArrayListIterator< T, N, A >:

Public Types | |
| enum | { chunkSize_ = (N > 0) ? N : 1 } |
| 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. | |
| const ConstArrayListIterator< T, N, A > & | operator= (const ConstArrayListIterator< T, N, A > &other) |
| 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 |
Detailed Description
template<class T, int N, class A>
class Dune::ConstArrayListIterator< T, N, A >
class Dune::ConstArrayListIterator< T, N, A >
A constant random access iterator for the Dune::ArrayList class.
Member Typedef Documentation
◆ const_reference
template<class T , int N, class A >
| using Dune::ConstArrayListIterator< T, N, A >::const_reference = typename A::value_type const& |
◆ DerivedType
template<class T , class V , class R = V&, class D = std::ptrdiff_t>
|
inherited |
The type of derived iterator.
The iterator has to define following functions have to be present:
// Access the value referred to.
// Access the value at some other location
// 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()
// advance the iterator by a number of positions-
// calculate the distance to another iterator.
// One should incorporate an assertion whether
// the same containers are referenced
DifferenceType distanceTo(j) const;
void increment()
Increment the iterator.
Definition arraylist.hh:617
const_reference elementAt(size_type i) const
Get the value of the list at an arbitrary position.
Definition arraylist.hh:641
void decrement()
decrement the iterator.
Definition arraylist.hh:629
const_reference dereference() const
Access the element at the current position.
Definition arraylist.hh:653
bool equals(const ConstArrayListIterator< MemberType, N, A > &other) const
Comares to iterators.
Definition arraylist.hh:603
difference_type distanceTo(const ConstArrayListIterator< T, N, A > &other) const
Definition arraylist.hh:667
D DifferenceType
The type of the difference between two positions.
Definition iteratorfacades.hh:490
R Reference
The type of the reference to the values accessed.
Definition iteratorfacades.hh:495
For an elaborate explanation see the STL Documentation
◆ difference_type
template<class T , int N, class A >
| typedef A::difference_type Dune::ConstArrayListIterator< T, N, A >::difference_type |
◆ DifferenceType
template<class T , class V , class R = V&, class D = std::ptrdiff_t>
|
inherited |
The type of the difference between two positions.
◆ iterator_category
template<class T , class V , class R = V&, class D = std::ptrdiff_t>
|
inherited |
◆ MemberType
template<class T , int N, class A >
| typedef A::value_type Dune::ConstArrayListIterator< T, N, A >::MemberType |
The member type.
◆ pointer
template<class T , class V , class R = V&, class D = std::ptrdiff_t>
|
inherited |
◆ Pointer
template<class T , class V , class R = V&, class D = std::ptrdiff_t>
|
inherited |
The pointer to the Value.
◆ reference
template<class T , int N, class A >
| using Dune::ConstArrayListIterator< T, N, A >::reference = typename A::value_type & |
◆ Reference
template<class T , class V , class R = V&, class D = std::ptrdiff_t>
|
inherited |
The type of the reference to the values accessed.
◆ size_type
template<class T , int N, class A >
| typedef A::size_type Dune::ConstArrayListIterator< T, N, A >::size_type |
◆ Value
template<class T , class V , class R = V&, class D = std::ptrdiff_t>
|
inherited |
The type of value accessed through the iterator.
◆ value_type
template<class T , class V , class R = V&, class D = std::ptrdiff_t>
|
inherited |
Member Enumeration Documentation
◆ anonymous enum
template<class T , int N, class A >
| anonymous enum |
Constructor & Destructor Documentation
◆ ConstArrayListIterator()
template<class T , int N, class A >
|
inline |
Member Function Documentation
◆ operator*()
template<class T , class V , class R = V&, class D = std::ptrdiff_t>
|
inlineinherited |
Dereferencing operator.
◆ operator+()
template<class T , class V , class R = V&, class D = std::ptrdiff_t>
|
inlineinherited |
◆ operator++() [1/2]
template<class T , class V , class R = V&, class D = std::ptrdiff_t>
|
inlineinherited |
Preincrement operator.
◆ operator++() [2/2]
template<class T , class V , class R = V&, class D = std::ptrdiff_t>
|
inlineinherited |
Postincrement operator.
◆ operator+=()
template<class T , class V , class R = V&, class D = std::ptrdiff_t>
|
inlineinherited |
◆ operator-()
template<class T , class V , class R = V&, class D = std::ptrdiff_t>
|
inlineinherited |
◆ operator--() [1/2]
template<class T , class V , class R = V&, class D = std::ptrdiff_t>
|
inlineinherited |
Predecrement operator.
◆ operator--() [2/2]
template<class T , class V , class R = V&, class D = std::ptrdiff_t>
|
inlineinherited |
Postdecrement operator.
◆ operator-=()
template<class T , class V , class R = V&, class D = std::ptrdiff_t>
|
inlineinherited |
◆ operator->()
template<class T , class V , class R = V&, class D = std::ptrdiff_t>
|
inlineinherited |
◆ operator[]()
template<class T , class V , class R = V&, class D = std::ptrdiff_t>
|
inlineinherited |
Get the element n positions from the current one.
- Parameters
-
n The distance to the element.
- Returns
- The element at that distance.
The documentation for this class was generated from the following file:
Legal Statements / Impressum | Hosted by TU Dresden & Uni Heidelberg | Generated by
1.9.8