ARTS 2.5.10 (git: 2f1c442c)
|
Const version of Iterator7D. More...
#include <matpackVII.h>
Public Member Functions | |
ConstIterator7D ()=default | |
Default constructor. | |
ConstIterator7D (ConstTensor6View x, Index stride) | |
Explicit constructor. | |
ConstIterator7D & | operator++ () |
Prefix increment operator. | |
bool | operator!= (const ConstIterator7D &other) const |
Not equal operator, needed for algorithms like copy. | |
const ConstTensor6View * | operator-> () const |
The -> operator is needed, so that we can write i->begin() to get the 1D iterators. | |
const ConstTensor6View & | operator* () const |
Dereferencing. | |
Private Attributes | |
ConstTensor6View | msv |
Current position. | |
Index | mstride {0} |
Stride. | |
Const version of Iterator7D.
Definition at line 86 of file matpackVII.h.
|
default |
Default constructor.
|
inline |
Explicit constructor.
Definition at line 93 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 108 of file matpackVII.h.
References ConstTensor6View::mbr, ConstTensor6View::mcr, ConstTensor6View::mdata, ConstTensor6View::mpr, ConstTensor6View::mrr, ConstTensor6View::msr, Range::mstart, msv, and ConstTensor6View::mvr.
|
inline |
|
inline |
Prefix increment operator.
Definition at line 99 of file matpackVII.h.
References ConstTensor6View::mdata, mstride, and msv.
|
inline |
The -> operator is needed, so that we can write i->begin() to get the 1D iterators.
Definition at line 120 of file matpackVII.h.
References msv.
|
private |
|
private |
Current position.
Definition at line 127 of file matpackVII.h.
Referenced by operator!=(), operator*(), operator++(), and operator->().