VTK
|
STL-style random access iterator for vtkTypedDataArrays. More...
#include <vtkTypedDataArrayIterator.h>
STL-style random access iterator for vtkTypedDataArrays.
vtkTypedDataArrayIterator provides an STL-style iterator that can be used to interact with instances of vtkTypedDataArray. It is intended to provide an alternative to using vtkDataArray::GetVoidPointer() that only uses vtkTypedDataArray API functions to retrieve values. It is especially helpful for safely iterating through subclasses of vtkMappedDataArray, which may not use the same memory layout as a typical vtkDataArray.
Definition at line 40 of file vtkTypedDataArrayIterator.h.
typedef std::random_access_iterator_tag vtkTypedDataArrayIterator< Scalar >::iterator_category |
Definition at line 43 of file vtkTypedDataArrayIterator.h.
typedef Scalar vtkTypedDataArrayIterator< Scalar >::value_type |
Definition at line 44 of file vtkTypedDataArrayIterator.h.
typedef std::ptrdiff_t vtkTypedDataArrayIterator< Scalar >::difference_type |
Definition at line 45 of file vtkTypedDataArrayIterator.h.
typedef Scalar& vtkTypedDataArrayIterator< Scalar >::reference |
Definition at line 46 of file vtkTypedDataArrayIterator.h.
typedef Scalar* vtkTypedDataArrayIterator< Scalar >::pointer |
Definition at line 47 of file vtkTypedDataArrayIterator.h.
vtkTypedDataArrayIterator< Scalar >::vtkTypedDataArrayIterator | ( | ) | [inline] |
Definition at line 49 of file vtkTypedDataArrayIterator.h.
vtkTypedDataArrayIterator< Scalar >::vtkTypedDataArrayIterator | ( | vtkTypedDataArray< Scalar > * | arr, |
const vtkIdType | index = 0 |
||
) | [inline, explicit] |
Definition at line 52 of file vtkTypedDataArrayIterator.h.
vtkTypedDataArrayIterator< Scalar >::vtkTypedDataArrayIterator | ( | const vtkTypedDataArrayIterator< Scalar > & | o | ) | [inline] |
Definition at line 59 of file vtkTypedDataArrayIterator.h.
vtkTypedDataArrayIterator& vtkTypedDataArrayIterator< Scalar >::operator= | ( | vtkTypedDataArrayIterator< Scalar > | o | ) | [inline] |
Definition at line 66 of file vtkTypedDataArrayIterator.h.
bool vtkTypedDataArrayIterator< Scalar >::operator== | ( | const vtkTypedDataArrayIterator< Scalar > & | o | ) | const [inline] |
Definition at line 73 of file vtkTypedDataArrayIterator.h.
bool vtkTypedDataArrayIterator< Scalar >::operator!= | ( | const vtkTypedDataArrayIterator< Scalar > & | o | ) | const [inline] |
Definition at line 78 of file vtkTypedDataArrayIterator.h.
bool vtkTypedDataArrayIterator< Scalar >::operator> | ( | const vtkTypedDataArrayIterator< Scalar > & | o | ) | const [inline] |
Definition at line 83 of file vtkTypedDataArrayIterator.h.
bool vtkTypedDataArrayIterator< Scalar >::operator>= | ( | const vtkTypedDataArrayIterator< Scalar > & | o | ) | const [inline] |
Definition at line 88 of file vtkTypedDataArrayIterator.h.
bool vtkTypedDataArrayIterator< Scalar >::operator< | ( | const vtkTypedDataArrayIterator< Scalar > & | o | ) | const [inline] |
Definition at line 93 of file vtkTypedDataArrayIterator.h.
bool vtkTypedDataArrayIterator< Scalar >::operator<= | ( | const vtkTypedDataArrayIterator< Scalar > & | o | ) | const [inline] |
Definition at line 98 of file vtkTypedDataArrayIterator.h.
Scalar& vtkTypedDataArrayIterator< Scalar >::operator* | ( | ) | [inline] |
Definition at line 103 of file vtkTypedDataArrayIterator.h.
Scalar* vtkTypedDataArrayIterator< Scalar >::operator-> | ( | ) | const [inline] |
Definition at line 108 of file vtkTypedDataArrayIterator.h.
Scalar& vtkTypedDataArrayIterator< Scalar >::operator[] | ( | const difference_type & | n | ) | [inline] |
Definition at line 113 of file vtkTypedDataArrayIterator.h.
vtkTypedDataArrayIterator& vtkTypedDataArrayIterator< Scalar >::operator++ | ( | void | ) | [inline] |
Definition at line 118 of file vtkTypedDataArrayIterator.h.
vtkTypedDataArrayIterator& vtkTypedDataArrayIterator< Scalar >::operator-- | ( | void | ) | [inline] |
Definition at line 124 of file vtkTypedDataArrayIterator.h.
vtkTypedDataArrayIterator vtkTypedDataArrayIterator< Scalar >::operator++ | ( | int | ) | [inline] |
Definition at line 130 of file vtkTypedDataArrayIterator.h.
vtkTypedDataArrayIterator vtkTypedDataArrayIterator< Scalar >::operator-- | ( | int | ) | [inline] |
Definition at line 135 of file vtkTypedDataArrayIterator.h.
vtkTypedDataArrayIterator vtkTypedDataArrayIterator< Scalar >::operator+ | ( | const difference_type & | n | ) | const [inline] |
Definition at line 140 of file vtkTypedDataArrayIterator.h.
vtkTypedDataArrayIterator vtkTypedDataArrayIterator< Scalar >::operator- | ( | const difference_type & | n | ) | const [inline] |
Definition at line 145 of file vtkTypedDataArrayIterator.h.
difference_type vtkTypedDataArrayIterator< Scalar >::operator- | ( | const vtkTypedDataArrayIterator< Scalar > & | other | ) | const [inline] |
Definition at line 150 of file vtkTypedDataArrayIterator.h.
vtkTypedDataArrayIterator& vtkTypedDataArrayIterator< Scalar >::operator+= | ( | const difference_type & | n | ) | [inline] |
Definition at line 155 of file vtkTypedDataArrayIterator.h.
vtkTypedDataArrayIterator& vtkTypedDataArrayIterator< Scalar >::operator-= | ( | const difference_type & | n | ) | [inline] |
Definition at line 161 of file vtkTypedDataArrayIterator.h.