ARTS
2.2.66
|
The iterator class for sub vectors. More...
#include <matpackI.h>
Public Member Functions | |
Iterator1D () | |
Default constructor. More... | |
Iterator1D (Numeric *x, Index stride) | |
Explicit constructor. More... | |
Iterator1D & | operator++ () |
Prefix increment operator. More... | |
Numeric & | operator* () const |
Dereferencing. More... | |
bool | operator!= (const Iterator1D &other) const |
Not equal operator, needed for algorithms like copy. More... | |
Private Attributes | |
Numeric * | mx |
Current position. More... | |
Index | mstride |
Stride. More... | |
Friends | |
void | copy (ConstIterator1D origin, const ConstIterator1D &end, Iterator1D target) |
Copy data between begin and end to target. More... | |
The iterator class for sub vectors.
This takes into account the defined stride.
Definition at line 214 of file matpackI.h.
|
inline |
Default constructor.
Definition at line 217 of file matpackI.h.
Explicit constructor.
Definition at line 220 of file matpackI.h.
|
inline |
Not equal operator, needed for algorithms like copy.
Definition at line 233 of file matpackI.h.
|
inline |
Dereferencing.
Definition at line 230 of file matpackI.h.
|
inline |
Prefix increment operator.
Definition at line 226 of file matpackI.h.
|
friend |
Copy data between begin and end to target.
Target must be a valid area of memory. Note that the strides in the iterators can be different, so that we can for example copy data between different kinds of subvectors.
Definition at line 612 of file matpackI.cc.
|
private |
|
private |
Current position.
Definition at line 242 of file matpackI.h.
Referenced by copy(), and operator!=().