ARTS
2.2.66
|
Const version of Iterator7D. More...
#include <matpackVII.h>
Public Member Functions | |
ConstIterator7D () | |
Default constructor. More... | |
ConstIterator7D (const ConstTensor6View &x, Index stride) | |
Explicit constructor. More... | |
ConstIterator7D & | operator++ () |
Prefix increment operator. More... | |
bool | operator!= (const ConstIterator7D &other) const |
Not equal operator, needed for algorithms like copy. More... | |
const ConstTensor6View * | operator-> () const |
The -> operator is needed, so that we can write i->begin() to get the 1D iterators. More... | |
const ConstTensor6View & | operator* () const |
Dereferencing. More... | |
Private Attributes | |
ConstTensor6View | msv |
Current position. More... | |
Index | mstride |
Stride. More... | |
Const version of Iterator7D.
Definition at line 90 of file matpackVII.h.
|
inline |
Default constructor.
Definition at line 94 of file matpackVII.h.
|
inline |
Explicit constructor.
Definition at line 97 of file matpackVII.h.
|
inline |
Not equal operator, needed for algorithms like copy.
FIXME: Is it really necessary to have such a complicated check here? It could be sufficient to just test msv.mdata!=other.msv.mdata.
Definition at line 109 of file matpackVII.h.
References ConstTensor6View::mbr, ConstTensor6View::mcr, ConstTensor6View::mdata, ConstTensor6View::mpr, ConstTensor6View::mrr, ConstTensor6View::msr, Range::mstart, Iterator7D::msv, msv, and ConstTensor6View::mvr.
|
inline |
|
inline |
Prefix increment operator.
Definition at line 103 of file matpackVII.h.
References ConstTensor6View::mdata, Iterator7D::mstride, and Iterator7D::msv.
|
inline |
The -> operator is needed, so that we can write i->begin() to get the 1D iterators.
Definition at line 132 of file matpackVII.h.
References Iterator7D::msv.
|
private |
Stride.
Definition at line 141 of file matpackVII.h.
|
private |