ARTS 2.5.4 (git: 4c0d3b4d)
|
The const row iterator class for sub matrices. More...
#include <matpackI.h>
Public Member Functions | |
ConstIterator2D ()=default | |
Default constructor. More... | |
ConstIterator2D (const ConstVectorView &x, Index stride) ARTS_NOEXCEPT | |
Explicit constructor. More... | |
ConstIterator2D & | operator++ () ARTS_NOEXCEPT |
Prefix increment operator. More... | |
bool | operator!= (const ConstIterator2D &other) const ARTS_NOEXCEPT |
Not equal operator, needed for algorithms like copy. More... | |
const ConstVectorView * | operator-> () const ARTS_NOEXCEPT |
The -> operator is needed, so that we can write i->begin() to get the 1D iterators. More... | |
const ConstVectorView & | operator* () const ARTS_NOEXCEPT |
Dereferencing. More... | |
Private Attributes | |
ConstVectorView | msv |
Current position. More... | |
Index | mstride {0} |
Row stride. More... | |
The const row iterator class for sub matrices.
This takes into account the defined row stride. The iterator points to a row of the matrix, which acts just like a VectorView.
Definition at line 857 of file matpackI.h.
|
default |
Default constructor.
|
inline |
Explicit constructor.
Definition at line 864 of file matpackI.h.
|
inline |
Not equal operator, needed for algorithms like copy.
Definition at line 877 of file matpackI.h.
|
inline |
Dereferencing.
Definition at line 889 of file matpackI.h.
|
inline |
Prefix increment operator.
Definition at line 871 of file matpackI.h.
|
inline |
The -> operator is needed, so that we can write i->begin() to get the 1D iterators.
Definition at line 886 of file matpackI.h.
|
private |
Row stride.
Definition at line 895 of file matpackI.h.
|
private |
Current position.
Definition at line 893 of file matpackI.h.