ARTS
1.0.222
|
Implementation of Tensors of Rank 3. More...
#include <matpackIII.h>
Public Member Functions | |
Iterator3D () | |
Default constructor. More... | |
Iterator3D (const Iterator3D &o) | |
Copy constructor. More... | |
Iterator3D (const MatrixView &x, Index stride) | |
Explicit constructor. More... | |
Iterator3D & | operator++ () |
Prefix increment operator. More... | |
bool | operator!= (const Iterator3D &other) const |
Not equal operator, needed for algorithms like copy. More... | |
MatrixView * | operator-> () |
The -> operator is needed, so that we can write i->begin() to get the 1D iterators. More... | |
MatrixView & | operator* () |
Dereferencing. More... | |
Private Attributes | |
MatrixView | msv |
Current position. More... | |
Index | mstride |
Stride. More... | |
Implementation of Tensors of Rank 3.
The three dimensions are called: page, row, column.
Definition at line 35 of file matpackIII.h.
|
inline |
Default constructor.
Definition at line 274 of file matpackIII.h.
|
inline |
Copy constructor.
Definition at line 280 of file matpackIII.h.
|
inline |
Explicit constructor.
Definition at line 287 of file matpackIII.h.
|
inline |
Not equal operator, needed for algorithms like copy.
Definition at line 301 of file matpackIII.h.
|
inline |
Dereferencing.
Definition at line 323 of file matpackIII.h.
|
inline |
Prefix increment operator.
Definition at line 294 of file matpackIII.h.
|
inline |
The -> operator is needed, so that we can write i->begin() to get the 1D iterators.
Definition at line 317 of file matpackIII.h.
|
private |
Stride.
Definition at line 52 of file matpackIII.h.
|
private |
Current position.
Definition at line 50 of file matpackIII.h.