ARTS 2.5.10 (git: 2f1c442c)
|
The row iterator class for sub matrices. More...
#include <matpackI.h>
Public Member Functions | |
Iterator2D ()=default | |
Default constructor. | |
Iterator2D (const VectorView &x, Index stride) ARTS_NOEXCEPT | |
Explicit constructor. | |
Iterator2D & | operator++ () ARTS_NOEXCEPT |
Prefix increment operator. | |
bool | operator!= (const Iterator2D &other) const ARTS_NOEXCEPT |
Not equal operator, needed for algorithms like copy. | |
VectorView * | operator-> () ARTS_NOEXCEPT |
The -> operator is needed, so that we can write i->begin() to get the 1D iterators. | |
VectorView & | operator* () ARTS_NOEXCEPT |
Dereferencing. | |
Private Attributes | |
VectorView | msv |
Current position. | |
Index | mstride {0} |
Row stride. | |
The 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 815 of file matpackI.h.
|
default |
Default constructor.
|
inline |
Explicit constructor.
Definition at line 822 of file matpackI.h.
|
inline |
Not equal operator, needed for algorithms like copy.
Definition at line 835 of file matpackI.h.
|
inline |
Dereferencing.
Definition at line 847 of file matpackI.h.
|
inline |
Prefix increment operator.
Definition at line 829 of file matpackI.h.
|
inline |
The -> operator is needed, so that we can write i->begin() to get the 1D iterators.
Definition at line 844 of file matpackI.h.
|
private |
Row stride.
Definition at line 853 of file matpackI.h.
|
private |
Current position.
Definition at line 851 of file matpackI.h.