ARTS
2.3.1285(git:92a29ea9-dirty)
|
The outermost iterator class for rank 6 tensors. More...
#include <matpackVI.h>
Public Member Functions | |
Iterator6D ()=default | |
Default constructor. More... | |
Iterator6D (const Tensor5View &x, Index stride) | |
Explicit constructor. More... | |
Iterator6D & | operator++ () |
Prefix increment operator. More... | |
bool | operator!= (const Iterator6D &other) const |
Not equal operator, needed for algorithms like copy. More... | |
Tensor5View * | operator-> () |
The -> operator is needed, so that we can write i->begin() to get the 1D iterators. More... | |
Tensor5View & | operator* () |
Dereferencing. More... | |
Private Attributes | |
Tensor5View | msv |
Current position. More... | |
Index | mstride {0} |
Stride. More... | |
The outermost iterator class for rank 6 tensors.
This takes into account the defined strided.
Definition at line 40 of file matpackVI.h.
|
default |
Default constructor.
|
inline |
Explicit constructor.
Definition at line 47 of file matpackVI.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 62 of file matpackVI.h.
References ConstTensor5View::mbr, ConstTensor5View::mcr, ConstTensor5View::mdata, ConstTensor5View::mpr, ConstTensor5View::mrr, ConstTensor5View::msr, Range::mstart, and msv.
|
inline |
|
inline |
Prefix increment operator.
Definition at line 53 of file matpackVI.h.
References ConstTensor5View::mdata, mstride, and msv.
|
inline |
The -> operator is needed, so that we can write i->begin() to get the 1D iterators.
Definition at line 74 of file matpackVI.h.
References msv.
|
private |
Stride.
Definition at line 83 of file matpackVI.h.
Referenced by operator++(), and ConstIterator6D::operator++().
|
private |
Current position.
Definition at line 81 of file matpackVI.h.
Referenced by operator!=(), ConstIterator6D::operator!=(), operator*(), ConstIterator6D::operator*(), operator++(), ConstIterator6D::operator++(), operator->(), and ConstIterator6D::operator->().