deal.II version GIT relicensing-2167-g9622207b8f 2024-11-21 12:40:00+00:00
|
#include <deal.II/base/vectorization.h>
Public Member Functions | |
constexpr | VectorizedArrayIterator (T &data, const std::size_t lane) |
constexpr bool | operator== (const VectorizedArrayIterator< T > &other) const |
constexpr bool | operator!= (const VectorizedArrayIterator< T > &other) const |
constexpr const T::value_type & | operator* () const |
template<typename U = T> | |
constexpr std::enable_if_t<!std::is_same_v< U, const U >, typename T::value_type > & | operator* () |
constexpr VectorizedArrayIterator< T > & | operator++ () |
constexpr VectorizedArrayIterator< T > & | operator+= (const std::size_t offset) |
constexpr VectorizedArrayIterator< T > & | operator-- () |
constexpr VectorizedArrayIterator< T > | operator+ (const std::size_t &offset) const |
constexpr std::ptrdiff_t | operator- (const VectorizedArrayIterator< T > &other) const |
Private Attributes | |
T * | data |
std::size_t | lane |
An iterator for VectorizedArray.
Definition at line 99 of file vectorization.h.
|
inlineconstexpr |
Constructor.
data | The actual VectorizedArray. |
lane | A pointer to the current lane. |
Definition at line 108 of file vectorization.h.
|
inlineconstexpr |
Compare for equality.
Definition at line 117 of file vectorization.h.
|
inlineconstexpr |
Compare for inequality.
Definition at line 129 of file vectorization.h.
|
inlineconstexpr |
Dereferencing operator (const version): returns the value of the current lane.
Definition at line 142 of file vectorization.h.
|
inlineconstexpr |
Dereferencing operator (non-const
version): returns the value of the current lane.
Definition at line 156 of file vectorization.h.
|
inlineconstexpr |
Prefix ++
operator: ++iterator
. This operator advances the iterator to the next lane and returns a reference to *this
.
Definition at line 168 of file vectorization.h.
|
inlineconstexpr |
This operator advances the iterator by offset
lanes and returns a reference to *this
.
Definition at line 180 of file vectorization.h.
|
inlineconstexpr |
Prefix –
operator: –iterator
. This operator advances the iterator to the previous lane and returns a reference to *this
.
Definition at line 193 of file vectorization.h.
|
inlineconstexpr |
Create new iterator, which is shifted by offset
.
Definition at line 207 of file vectorization.h.
|
inlineconstexpr |
Compute distance between this iterator and iterator other
.
Definition at line 217 of file vectorization.h.
|
private |
Pointer to the actual VectorizedArray.
Definition at line 227 of file vectorization.h.
|
private |
Pointer to the current lane.
Definition at line 232 of file vectorization.h.