ARTS
2.3.1285(git:92a29ea9-dirty)
|
The iterator class for sub vectors. More...
#include <complex.h>
Public Member Functions | |
ComplexIterator1D ()=default | |
Default constructor. More... | |
ComplexIterator1D (Complex *x, Index stride) | |
Explicit constructor. More... | |
ComplexIterator1D & | operator++ () |
Prefix increment operator. More... | |
Complex & | operator* () const |
Dereferencing. More... | |
bool | operator!= (const ComplexIterator1D &other) const |
Not equal operator, needed for algorithms like copy. More... | |
Private Attributes | |
Complex * | mx {nullptr} |
Current position. More... | |
Index | mstride {0} |
Stride. More... | |
Friends | |
void | copy (ConstComplexIterator1D origin, const ConstComplexIterator1D &end, ComplexIterator1D target) |
Copy data between begin and end to target. More... | |
The iterator class for sub vectors.
This takes into account the defined stride.
|
default |
Default constructor.
|
inline |
Not equal operator, needed for algorithms like copy.
Definition at line 198 of file complex.h.
References copy, Zeeman::end(), and mx.
|
inline |
Dereferencing.
Definition at line 195 of file complex.h.
References mx.
Referenced by ComplexMatrix::get_raw_data(), and ConstComplexVectorView::imag().
|
inline |
|
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 478 of file complex.cc.
Referenced by ComplexMatrix::get_raw_data(), operator!=(), and ConstComplexIterator1D::operator!=().
|
private |
Stride.
Definition at line 213 of file complex.h.
Referenced by copy(), operator++(), ConstComplexIterator1D::operator++(), ComplexIterator2D::operator++(), and ConstComplexIterator2D::operator++().
|
private |
Current position.
Definition at line 211 of file complex.h.
Referenced by copy(), operator!=(), ConstComplexIterator1D::operator!=(), operator*(), ConstComplexIterator1D::operator*(), operator++(), and ConstComplexIterator1D::operator++().