ARTS 2.5.10 (git: 2f1c442c)
|
Implementation of Tensors of Rank 5. More...
#include <matpackV.h>
Public Member Functions | |
Iterator5D ()=default | |
Default constructor. | |
Iterator5D (const Tensor4View &x, Index stride) | |
Explicit constructor. | |
Iterator5D & | operator++ () |
Prefix increment operator. | |
bool | operator!= (const Iterator5D &other) const |
Not equal operator, needed for algorithms like copy. | |
Tensor4View * | operator-> () |
The -> operator is needed, so that we can write i->begin() to get the 4D iterators. | |
Tensor4View & | operator* () |
Dereferencing. | |
Private Attributes | |
Tensor4View | msv |
Current position. | |
Index | mstride {0} |
Stride. | |
Implementation of Tensors of Rank 5.
Based on Tensor3 by Stefan Buehler.
The five dimensions are called: shelf, book, page, row, column.
Definition at line 41 of file matpackV.h.
|
default |
Default constructor.
|
inline |
Explicit constructor.
Definition at line 51 of file matpackV.h.
|
inline |
Not equal operator, needed for algorithms like copy.
Definition at line 63 of file matpackV.h.
References ConstTensor4View::mbr, ConstTensor4View::mcr, ConstTensor4View::mdata, ConstTensor4View::mpr, ConstTensor4View::mrr, Range::mstart, and msv.
|
inline |
|
inline |
Prefix increment operator.
Definition at line 57 of file matpackV.h.
References ConstTensor4View::mdata, mstride, and msv.
|
inline |
The -> operator is needed, so that we can write i->begin() to get the 4D iterators.
Definition at line 74 of file matpackV.h.
References msv.
|
private |
|
private |
Current position.
Definition at line 81 of file matpackV.h.
Referenced by operator!=(), operator*(), operator++(), and operator->().