ARTS
1.0.222
|
Const version of Iterator3D. More...
#include <matpackIII.h>
Public Member Functions | |
ConstIterator3D () | |
Default constructor. More... | |
ConstIterator3D (const ConstIterator3D &o) | |
Copy constructor. More... | |
ConstIterator3D (const ConstMatrixView &x, Index stride) | |
Explicit constructor. More... | |
ConstIterator3D & | operator++ () |
Prefix increment operator. More... | |
bool | operator!= (const ConstIterator3D &other) const |
Not equal operator, needed for algorithms like copy. More... | |
const ConstMatrixView * | operator-> () const |
The -> operator is needed, so that we can write i->begin() to get the 1D iterators. More... | |
const ConstMatrixView & | operator* () const |
Dereferencing. More... | |
Private Attributes | |
ConstMatrixView | msv |
Current position. More... | |
Index | mstride |
Stride. More... | |
Const version of Iterator3D.
Definition at line 56 of file matpackIII.h.
|
inline |
Default constructor.
Definition at line 332 of file matpackIII.h.
|
inline |
Copy constructor.
Definition at line 338 of file matpackIII.h.
|
inline |
Explicit constructor.
Definition at line 345 of file matpackIII.h.
|
inline |
Not equal operator, needed for algorithms like copy.
Definition at line 359 of file matpackIII.h.
|
inline |
Dereferencing.
Definition at line 381 of file matpackIII.h.
|
inline |
Prefix increment operator.
Definition at line 352 of file matpackIII.h.
|
inline |
The -> operator is needed, so that we can write i->begin() to get the 1D iterators.
Definition at line 375 of file matpackIII.h.
|
private |
Stride.
Definition at line 73 of file matpackIII.h.
|
private |
Current position.
Definition at line 71 of file matpackIII.h.