ARTS
2.3.1285(git:92a29ea9-dirty)
|
The row iterator class for sub matrices. More...
#include <complex.h>
Public Member Functions | |
ComplexIterator2D ()=default | |
Default constructor. More... | |
ComplexIterator2D (const ComplexVectorView &x, Index stride) | |
Explicit constructor. More... | |
ComplexIterator2D & | operator++ () |
Prefix increment operator. More... | |
bool | operator!= (const ComplexIterator2D &other) const |
Not equal operator, needed for algorithms like copy. More... | |
ComplexVectorView * | operator-> () |
The -> operator is needed, so that we can write i->begin() to get the 1D iterators. More... | |
ComplexVectorView & | operator* () |
Dereferencing. More... | |
Private Attributes | |
ComplexVectorView | msv |
Current position. More... | |
Index | mstride {0} |
Row stride. More... | |
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 ComplexVectorView.
|
default |
Default constructor.
|
inline |
|
inline |
Not equal operator, needed for algorithms like copy.
Definition at line 497 of file complex.h.
References ConstComplexVectorView::mdata, ConstComplexVectorView::mrange, Range::mstart, and msv.
|
inline |
|
inline |
Prefix increment operator.
Definition at line 491 of file complex.h.
References ComplexIterator1D::mstride.
|
inline |
|
private |