Reference documentation for deal.II version 9.5.0
|
#include <deal.II/base/vectorization.h>
Public Member Functions | |
VectorizedArrayIterator (T &data, const std::size_t lane) | |
bool | operator== (const VectorizedArrayIterator< T > &other) const |
bool | operator!= (const VectorizedArrayIterator< T > &other) const |
VectorizedArrayIterator< T > & | operator= (const VectorizedArrayIterator< T > &other)=default |
const T::value_type & | operator* () const |
template<typename U = T> | |
std::enable_if_t<!std::is_same< U, const U >::value, typename T::value_type > & | operator* () |
VectorizedArrayIterator< T > & | operator++ () |
VectorizedArrayIterator< T > & | operator+= (const std::size_t offset) |
VectorizedArrayIterator< T > & | operator-- () |
VectorizedArrayIterator< T > | operator+ (const std::size_t &offset) const |
std::ptrdiff_t | operator- (const VectorizedArrayIterator< T > &other) const |
Private Attributes | |
T * | data |
std::size_t | lane |
An iterator for VectorizedArray.
Definition at line 97 of file vectorization.h.
|
inline |
Constructor.
data | The actual VectorizedArray. |
lane | A pointer to the current lane. |
Definition at line 106 of file vectorization.h.
|
inline |
Compare for equality.
Definition at line 115 of file vectorization.h.
|
inline |
Compare for inequality.
Definition at line 127 of file vectorization.h.
|
default |
Copy assignment.
|
inline |
Dereferencing operator (const version): returns the value of the current lane.
Definition at line 146 of file vectorization.h.
|
inline |
Dereferencing operator (non-const
version): returns the value of the current lane.
Definition at line 159 of file vectorization.h.
|
inline |
Prefix ++
operator: ++iterator
. This operator advances the iterator to the next lane and returns a reference to *this
.
Definition at line 171 of file vectorization.h.
|
inline |
This operator advances the iterator by offset
lanes and returns a reference to *this
.
Definition at line 183 of file vectorization.h.
|
inline |
Prefix –
operator: –iterator
. This operator advances the iterator to the previous lane and returns a reference to *this
.
Definition at line 196 of file vectorization.h.
|
inline |
Create new iterator, which is shifted by offset
.
Definition at line 210 of file vectorization.h.
|
inline |
Compute distance between this iterator and iterator other
.
Definition at line 220 of file vectorization.h.
|
private |
Pointer to the actual VectorizedArray.
Definition at line 230 of file vectorization.h.
|
private |
Pointer to the current lane.
Definition at line 235 of file vectorization.h.