#include <matpackVI.h>
Public Member Functions | |
ConstIterator6D () | |
Default constructor. | |
ConstIterator6D (const ConstIterator6D &o) | |
Copy constructor. | |
ConstIterator6D (const ConstTensor5View &x, Index stride) | |
Explicit constructor. | |
ConstIterator6D & | operator++ () |
Prefix increment operator. | |
bool | operator!= (const ConstIterator6D &other) const |
Not equal operator, needed for algorithms like copy. | |
const ConstTensor5View * | operator-> () const |
The -> operator is needed, so that we can write i->begin() to get the 1D iterators. | |
const ConstTensor5View & | operator* () const |
Dereferencing. | |
Private Attributes | |
ConstTensor5View | msv |
Current position. | |
Index | mstride |
Stride. |
Definition at line 94 of file matpackVI.h.
ConstIterator6D::ConstIterator6D | ( | ) | [inline] |
ConstIterator6D::ConstIterator6D | ( | const ConstIterator6D & | o | ) | [inline] |
ConstIterator6D::ConstIterator6D | ( | const ConstTensor5View & | x, | |
Index | stride | |||
) | [inline] |
ConstIterator6D& ConstIterator6D::operator++ | ( | ) | [inline] |
Prefix increment operator.
Definition at line 110 of file matpackVI.h.
References ConstTensor5View::mdata, mstride, and msv.
bool ConstIterator6D::operator!= | ( | const ConstIterator6D & | other | ) | const [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 116 of file matpackVI.h.
References ConstTensor5View::mbr, ConstTensor5View::mcr, ConstTensor5View::mdata, ConstTensor5View::mpr, ConstTensor5View::mrr, ConstTensor5View::msr, Range::mstart, and msv.
const ConstTensor5View* ConstIterator6D::operator-> | ( | ) | const [inline] |
The -> operator is needed, so that we can write i->begin() to get the 1D iterators.
Definition at line 137 of file matpackVI.h.
References msv.
const ConstTensor5View& ConstIterator6D::operator* | ( | ) | const [inline] |
ConstTensor5View ConstIterator6D::msv [private] |
Current position.
Definition at line 144 of file matpackVI.h.
Referenced by operator!=(), operator*(), operator++(), and operator->().
Index ConstIterator6D::mstride [private] |