7#ifndef vtkDataArrayValueRange_AOS_h
8#define vtkDataArrayValueRange_AOS_h
13#include "vtkDebugRangeIterators.h"
21#ifndef VTK_DEBUG_RANGE_ITERATORS
29VTK_ABI_NAMESPACE_BEGIN
35template <
typename ValueTypeT, ComponentIdType TupleSize,
typename ForceValueTypeForVtkDataArray>
71 , BeginValue(beginValue)
75 assert(beginValue >= 0 && beginValue <= endValue);
76 assert(endValue >= 0 && endValue <= this->Array->GetNumberOfValues());
83 std::distance(this->Array->GetPointer(0), this->Array->GetPointer(this->BeginValue)) +
86 ? std::distance(this->Array->GetPointer(0), this->Array->GetPointer(this->BeginValue)) +
88 : std::distance(this->Array->GetPointer(0), this->Array->GetPointer(this->EndValue));
104 this->Array->GetPointer(this->BeginValue) - this->Array->GetPointer(0));
111 this->Array->GetPointer(this->EndValue) - this->Array->GetPointer(0));
118 this->Array->GetPointer(this->EndValue) - this->Array->GetPointer(this->BeginValue));
122 iterator begin() noexcept {
return this->Array->GetPointer(this->BeginValue); }
124 iterator end() noexcept {
return this->Array->GetPointer(this->EndValue); }
139 return this->Array->Buffer->GetBuffer()[this->BeginValue + i];
144 return this->Array->Buffer->GetBuffer()[this->BeginValue + i];
154 NumCompsType NumComps{};
160template <
typename ArrayType,
ComponentIdType TupleSize,
typename ForceValueTypeForVtkDataArray,
162 typename ValueType =
typename ArrayType::ValueType,
165 typename =
typename std::enable_if<IsAOSDataArray<ArrayType>::value>::type>
Array-Of-Structs implementation of vtkGenericDataArray.
ValueRange< AOSArrayType, TupleSize, ForceValueTypeForVtkDataArray > DeclareValueRangeSpecialization(ArrayType *)
Specialization of tuple ranges and iterators for vtkAOSDataArrayTemplate.
VTK_ITER_INLINE ValueRange GetSubRange(ValueIdType beginValue=0, ValueIdType endValue=-1) const noexcept
ValueType const & ConstReferenceType
VTK_ITER_INLINE ComponentIdType GetTupleSize() const noexcept
VTK_ITER_INLINE const_reference operator[](size_type i) const noexcept
VTK_ITER_INLINE size_type size() const noexcept
VTK_ITER_INLINE iterator end() noexcept
VTK_ITER_INLINE ArrayType * GetArray() const noexcept
VTK_ITER_INLINE reference operator[](size_type i) noexcept
VTK_ITER_INLINE ValueIdType GetEndValueId() const noexcept
value_type * data() const noexcept
ConstReferenceType const_reference
ValueType & ReferenceType
VTK_ITER_INLINE iterator begin() noexcept
ValueType const * ConstIteratorType
VTK_ITER_INLINE const_iterator begin() const noexcept
VTK_ITER_INLINE ValueIdType GetBeginValueId() const noexcept
VTK_ITER_INLINE const_iterator cbegin() const noexcept
ConstIteratorType const_iterator
value_type * data() noexcept
VTK_ITER_INLINE const_iterator end() const noexcept
VTK_ITER_INLINE const_iterator cend() const noexcept
VTK_ITER_INLINE ValueRange() noexcept=default
static constexpr ComponentIdType TupleSizeTag
GetAPIType< ArrayType, ForceValueTypeForVtkDataArray > ValueType
ConstValueReference< ArrayType, TupleSize, ForceValueTypeForVtkDataArray > ConstReferenceType
ValueReference< ArrayType, TupleSize, ForceValueTypeForVtkDataArray > ReferenceType
ConstValueIterator< ArrayType, TupleSize, ForceValueTypeForVtkDataArray > ConstIteratorType
ValueIterator< ArrayType, TupleSize, ForceValueTypeForVtkDataArray > IteratorType