dune-common 2.9.1
|
Generic iterator class for dense vector and matrix implementations. More...
#include <dune/common/densevector.hh>
Public Types | |
typedef std::ptrdiff_t | DifferenceType |
The type of the difference between two positions. | |
typedef C::size_type | SizeType |
The type to index the underlying container. | |
using | iterator_category = std::random_access_iterator_tag |
using | value_type = typename std::remove_const<V>::type |
using | difference_type = D |
using | pointer = V* |
using | reference = R |
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 R | Reference |
The type of the reference to the values accessed. | |
Generic iterator class for dense vector and matrix implementations.
provides sequential access to DenseVector, FieldVector and FieldMatrix
|
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
|
inherited |
typedef std::ptrdiff_t Dune::DenseIterator< C, T, R >::DifferenceType |
The type of the difference between two positions.
|
inherited |
|
inherited |
|
inherited |
The pointer to the Value.
|
inherited |
|
inherited |
The type of the reference to the values accessed.
typedef C::size_type Dune::DenseIterator< C, T, R >::SizeType |
The type to index the underlying container.
|
inherited |
The type of value accessed through the iterator.
|
inherited |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
return index
|
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. |