| ARTS
    2.0.49
    | 
Implementation of Tensors of Rank 7. More...
#include <matpackVII.h>
| Public Member Functions | |
| Iterator7D () | |
| Default constructor.  More... | |
| Iterator7D (const Iterator7D &o) | |
| Copy 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 35 of file matpackVII.h.
| 
 | inline | 
Default constructor.
Definition at line 39 of file matpackVII.h.
| 
 | inline | 
Copy constructor.
Definition at line 42 of file matpackVII.h.
| 
 | inline | 
Explicit constructor.
Definition at line 46 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 57 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 51 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 80 of file matpackVII.h.
References msv.
| 
 | private | 
| 
 | private | 
Current position.
Definition at line 87 of file matpackVII.h.
Referenced by operator!=(), operator*(), operator++(), and operator->().