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