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());
79 assert(arr->GetNumberOfComponents() == TupleSize);
87 std::distance(this->Array->GetPointer(0), this->Array->GetPointer(this->BeginValue)) +
90 ? std::distance(this->Array->GetPointer(0), this->Array->GetPointer(this->BeginValue)) +
92 : std::distance(this->Array->GetPointer(0), this->Array->GetPointer(this->EndValue));
108 this->Array->GetPointer(this->BeginValue) - this->Array->GetPointer(0));
115 this->Array->GetPointer(this->EndValue) - this->Array->GetPointer(0));
122 this->Array->GetPointer(this->EndValue) - this->Array->GetPointer(this->BeginValue));
126 iterator begin() noexcept {
return this->Array->GetPointer(this->BeginValue); }
128 iterator end() noexcept {
return this->Array->GetPointer(this->EndValue); }
143 return this->Array->Buffer->GetBuffer()[this->BeginValue + i];
148 return this->Array->Buffer->GetBuffer()[this->BeginValue + i];
160 NumCompsType NumComps{};
166template <
typename ArrayType,
ComponentIdType TupleSize,
typename ForceValueTypeForVtkDataArray,
168 typename ValueType =
typename ArrayType::ValueType,
169 typename AOSArrayType = vtkAOSDataArrayTemplate<ValueType>,
171 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
static constexpr ComponentIdType TupleSizeTag
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
vtkAOSDataArrayTemplate< ValueTypeT > ArrayType
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
#define VTK_DEPRECATED_IN_9_6_0(reason)