ARTS 2.5.10 (git: 2f1c442c)
|
Const version of Iterator5D. More...
#include <matpackV.h>
Public Member Functions | |
ConstIterator5D ()=default | |
Default constructor. | |
ConstIterator5D (ConstTensor4View x, Index stride) | |
Explicit constructor. | |
ConstIterator5D & | operator++ () |
Prefix increment operator. | |
bool | operator!= (const ConstIterator5D &other) const |
Not equal operator, needed for algorithms like copy. | |
const ConstTensor4View * | operator-> () const |
The -> operator is needed, so that we can write i->begin() to get the 4D iterators. | |
const ConstTensor4View & | operator* () const |
Dereferencing. | |
Private Attributes | |
ConstTensor4View | msv |
Current position. | |
Index | mstride {0} |
Stride. | |
Const version of Iterator5D.
Definition at line 87 of file matpackV.h.
|
default |
Default constructor.
|
inline |
Explicit constructor.
Definition at line 94 of file matpackV.h.
|
inline |
Not equal operator, needed for algorithms like copy.
Definition at line 106 of file matpackV.h.
References ConstTensor4View::mbr, ConstTensor4View::mcr, ConstTensor4View::mdata, ConstTensor4View::mpr, ConstTensor4View::mrr, Range::mstart, and msv.
|
inline |
|
inline |
Prefix increment operator.
Definition at line 100 of file matpackV.h.
References ConstTensor4View::mdata, mstride, and msv.
|
inline |
The -> operator is needed, so that we can write i->begin() to get the 4D iterators.
Definition at line 117 of file matpackV.h.
References msv.
|
private |
|
private |
Current position.
Definition at line 124 of file matpackV.h.
Referenced by operator!=(), operator*(), operator++(), and operator->().