#include <matpackV.h>
Public Member Functions | |
ConstIterator5D () | |
Default constructor. | |
ConstIterator5D (const ConstIterator5D &o) | |
Copy constructor. | |
ConstIterator5D (const 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 |
Stride. |
Definition at line 92 of file matpackV.h.
ConstIterator5D::ConstIterator5D | ( | ) | [inline] |
ConstIterator5D::ConstIterator5D | ( | const ConstIterator5D & | o | ) | [inline] |
ConstIterator5D::ConstIterator5D | ( | const ConstTensor4View & | x, | |
Index | stride | |||
) | [inline] |
ConstIterator5D& ConstIterator5D::operator++ | ( | ) | [inline] |
Prefix increment operator.
Definition at line 109 of file matpackV.h.
References ConstTensor4View::mdata, mstride, and msv.
bool ConstIterator5D::operator!= | ( | const ConstIterator5D & | other | ) | const [inline] |
Not equal operator, needed for algorithms like copy.
Definition at line 112 of file matpackV.h.
References ConstTensor4View::mbr, ConstTensor4View::mcr, ConstTensor4View::mdata, ConstTensor4View::mpr, ConstTensor4View::mrr, Range::mstart, and msv.
const ConstTensor4View* ConstIterator5D::operator-> | ( | ) | const [inline] |
The -> operator is needed, so that we can write i->begin() to get the 4D iterators.
Definition at line 131 of file matpackV.h.
References msv.
const ConstTensor4View& ConstIterator5D::operator* | ( | ) | const [inline] |
ConstTensor4View ConstIterator5D::msv [private] |
Current position.
Definition at line 138 of file matpackV.h.
Referenced by operator!=(), operator*(), operator++(), and operator->().
Index ConstIterator5D::mstride [private] |