ARTS
2.4.0(git:4fb77825)
|
Const version of Iterator3D. More...
#include <matpackIII.h>
Public Member Functions | |
ConstIterator3D ()=default | |
Default constructor. More... | |
ConstIterator3D (const ConstMatrixView &x, Index stride) | |
Explicit constructor. More... | |
ConstIterator3D & | operator++ () |
Prefix increment operator. More... | |
bool | operator!= (const ConstIterator3D &other) const |
Not equal operator, needed for algorithms like copy. More... | |
const ConstMatrixView * | operator-> () const |
The -> operator is needed, so that we can write i->begin() to get the 1D iterators. More... | |
const ConstMatrixView & | operator* () const |
Dereferencing. More... | |
Private Attributes | |
ConstMatrixView | msv |
Current position. More... | |
Index | mstride {0} |
Stride. More... | |
Const version of Iterator3D.
Definition at line 76 of file matpackIII.h.
|
default |
Default constructor.
|
inline |
Explicit constructor.
Definition at line 83 of file matpackIII.h.
|
inline |
Not equal operator, needed for algorithms like copy.
Definition at line 95 of file matpackIII.h.
References ConstMatrixView::mcr, ConstMatrixView::mdata, ConstMatrixView::mrr, Range::mstart, and msv.
|
inline |
|
inline |
Prefix increment operator.
Definition at line 89 of file matpackIII.h.
References ConstMatrixView::mdata, mstride, and msv.
|
inline |
The -> operator is needed, so that we can write i->begin() to get the 1D iterators.
Definition at line 105 of file matpackIII.h.
References msv.
|
private |
|
private |
Current position.
Definition at line 112 of file matpackIII.h.
Referenced by operator!=(), operator*(), operator++(), and operator->().