#include <matpackVII.h>
Public Member Functions | |
Iterator7D () | |
Default constructor. | |
Iterator7D (const Iterator7D &o) | |
Copy constructor. | |
Iterator7D (const Tensor6View &x, Index stride) | |
Explicit constructor. | |
Iterator7D & | operator++ () |
Prefix increment operator. | |
bool | operator!= (const Iterator7D &other) const |
Not equal operator, needed for algorithms like copy. | |
Tensor6View * | operator-> () |
The -> operator is needed, so that we can write i->begin() to get the 1D iterators. | |
Tensor6View & | operator* () |
Dereferencing. | |
Private Attributes | |
Tensor6View | msv |
Current position. | |
Index | mstride |
Stride. |
Dimensions are called: library, vitrine, shelf, book, page, row, column. or short: l, v, s, b, p, r, c
Definition at line 35 of file matpackVII.h.
Iterator7D::Iterator7D | ( | ) | [inline] |
Iterator7D::Iterator7D | ( | const Iterator7D & | o | ) | [inline] |
Iterator7D::Iterator7D | ( | const Tensor6View & | x, | |
Index | stride | |||
) | [inline] |
Iterator7D& Iterator7D::operator++ | ( | ) | [inline] |
Prefix increment operator.
Definition at line 51 of file matpackVII.h.
References ConstTensor6View::mdata, mstride, and msv.
bool Iterator7D::operator!= | ( | const Iterator7D & | other | ) | const [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 57 of file matpackVII.h.
References ConstTensor6View::mbr, ConstTensor6View::mcr, ConstTensor6View::mdata, ConstTensor6View::mpr, ConstTensor6View::mrr, ConstTensor6View::msr, Range::mstart, msv, and ConstTensor6View::mvr.
Tensor6View* Iterator7D::operator-> | ( | ) | [inline] |
The -> operator is needed, so that we can write i->begin() to get the 1D iterators.
Definition at line 80 of file matpackVII.h.
References msv.
Tensor6View& Iterator7D::operator* | ( | ) | [inline] |
Tensor6View Iterator7D::msv [private] |
Current position.
Definition at line 87 of file matpackVII.h.
Referenced by operator!=(), operator*(), operator++(), and operator->().
Index Iterator7D::mstride [private] |