ARTS
2.2.66
|
Implementation of Tensors of Rank 5. More...
#include <matpackV.h>
Public Member Functions | |
Iterator5D () | |
Default constructor. More... | |
Iterator5D (const Tensor4View &x, Index stride) | |
Explicit constructor. More... | |
Iterator5D & | operator++ () |
Prefix increment operator. More... | |
bool | operator!= (const Iterator5D &other) const |
Not equal operator, needed for algorithms like copy. More... | |
Tensor4View * | operator-> () |
The -> operator is needed, so that we can write i->begin() to get the 4D iterators. More... | |
Tensor4View & | operator* () |
Dereferencing. More... | |
Private Attributes | |
Tensor4View | msv |
Current position. More... | |
Index | mstride |
Stride. More... | |
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 38 of file matpackV.h.
|
inline |
Default constructor.
Definition at line 45 of file matpackV.h.
|
inline |
Explicit constructor.
Definition at line 48 of file matpackV.h.
|
inline |
Not equal operator, needed for algorithms like copy.
Definition at line 56 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 53 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 75 of file matpackV.h.
References msv.
|
private |
Stride.
Definition at line 84 of file matpackV.h.
Referenced by operator++(), and ConstIterator5D::operator++().
|
private |
Current position.
Definition at line 82 of file matpackV.h.
Referenced by operator!=(), ConstIterator5D::operator!=(), operator*(), ConstIterator5D::operator*(), operator++(), ConstIterator5D::operator++(), operator->(), and ConstIterator5D::operator->().