ARTS
2.2.66
|
Implementation of Tensors of Rank 7. More...
#include <matpackVII.h>
Public Member Functions | |
Iterator7D () | |
Default constructor. More... | |
Iterator7D (const Tensor6View &x, Index stride) | |
Explicit constructor. More... | |
Iterator7D & | operator++ () |
Prefix increment operator. More... | |
bool | operator!= (const Iterator7D &other) const |
Not equal operator, needed for algorithms like copy. More... | |
Tensor6View * | operator-> () |
The -> operator is needed, so that we can write i->begin() to get the 1D iterators. More... | |
Tensor6View & | operator* () |
Dereferencing. More... | |
Private Attributes | |
Tensor6View | msv |
Current position. More... | |
Index | mstride |
Stride. More... | |
Implementation of Tensors of Rank 7.
Dimensions are called: library, vitrine, shelf, book, page, row, column. or short: l, v, s, b, p, r, c
Definition at line 36 of file matpackVII.h.
|
inline |
Default constructor.
Definition at line 40 of file matpackVII.h.
|
inline |
Explicit constructor.
Definition at line 43 of file matpackVII.h.
|
inline |
Not equal operator, needed for algorithms like copy.
FIXME: Is it really necessary to have such a complicated check here? It could be sufficient to just test msv.mdata!=other.msv.mdata.
Definition at line 54 of file matpackVII.h.
References ConstTensor6View::mbr, ConstTensor6View::mcr, ConstTensor6View::mdata, ConstTensor6View::mpr, ConstTensor6View::mrr, ConstTensor6View::msr, Range::mstart, msv, and ConstTensor6View::mvr.
|
inline |
|
inline |
Prefix increment operator.
Definition at line 48 of file matpackVII.h.
References ConstTensor6View::mdata, mstride, and msv.
|
inline |
The -> operator is needed, so that we can write i->begin() to get the 1D iterators.
Definition at line 77 of file matpackVII.h.
References msv.
|
private |
Stride.
Definition at line 86 of file matpackVII.h.
Referenced by operator++(), and ConstIterator7D::operator++().
|
private |
Current position.
Definition at line 84 of file matpackVII.h.
Referenced by operator!=(), ConstIterator7D::operator!=(), operator*(), ConstIterator7D::operator*(), operator++(), ConstIterator7D::operator++(), operator->(), and ConstIterator7D::operator->().