19 #ifndef vtkDataArrayValueRange_AOS_h
20 #define vtkDataArrayValueRange_AOS_h
25 #include "vtkDebugRangeIterators.h"
30 #include <type_traits>
33 #ifndef VTK_DEBUG_RANGE_ITERATORS
45 template <
typename ValueTypeT, ComponentIdType TupleSize>
81 , Begin(arr->GetPointer(beginValue))
82 , End(arr->GetPointer(endValue))
85 assert(beginValue >= 0 && beginValue <= endValue);
86 assert(endValue >= 0 && endValue <= this->Array->GetNumberOfValues());
93 std::distance(this->Array->GetPointer(0), this->Begin) + beginValue;
95 ? std::distance(this->Array->GetPointer(0), this->Begin) + endValue
96 : std::distance(this->Array->GetPointer(0), this->End);
98 return ValueRange{ this->Array, realBegin, realEnd };
110 return static_cast<ValueIdType>(this->Begin - this->Array->GetPointer(0));
116 return static_cast<ValueIdType>(this->End - this->Array->GetPointer(0));
144 NumCompsType NumComps{};
152 typename ValueType =
typename ArrayType::ValueType,
Array-Of-Structs implementation of vtkGenericDataArray.
ValueRange< AOSArrayType, TupleSize > DeclareValueRangeSpecialization(ArrayType *)
Specialization of tuple ranges and iterators for vtkAOSDataArrayTemplate.
ConstReferenceType const_reference
VTK_ITER_INLINE ValueIdType GetBeginValueId() const noexcept
VTK_ITER_INLINE const_iterator end() const noexcept
VTK_ITER_INLINE ValueRange GetSubRange(ValueIdType beginValue=0, ValueIdType endValue=-1) const noexcept
VTK_ITER_INLINE iterator begin() noexcept
ValueType const & ConstReferenceType
VTK_ITER_INLINE reference operator[](size_type i) noexcept
VTK_ITER_INLINE const_iterator cend() const noexcept
ValueType const * ConstIteratorType
VTK_ITER_INLINE ArrayType * GetArray() const noexcept
VTK_ITER_INLINE size_type size() const noexcept
ValueType & ReferenceType
ConstIteratorType const_iterator
VTK_ITER_INLINE const_iterator begin() const noexcept
VTK_ITER_INLINE ValueIdType GetEndValueId() const noexcept
VTK_ITER_INLINE ValueRange() noexcept=default
VTK_ITER_INLINE iterator end() noexcept
VTK_ITER_INLINE ComponentIdType GetTupleSize() const noexcept
VTK_ITER_INLINE const_iterator cbegin() const noexcept
VTK_ITER_INLINE const_reference operator[](size_type i) const noexcept
GetAPIType< ArrayTypeT > ValueType
ConstValueReference< ArrayType, TupleSize > ConstReferenceType
ValueIterator< ArrayType, TupleSize > IteratorType
constexpr static ComponentIdType TupleSizeTag
ValueReference< ArrayType, TupleSize > ReferenceType
ConstValueIterator< ArrayType, TupleSize > ConstIteratorType