![]() |
ezEngine Release 25.08
|
Base class for STL like random access iterators. More...
#include <ArrayIterator.h>

Public Types | |
| using | iterator_category = std::random_access_iterator_tag |
| using | value_type = T |
| using | difference_type = std::ptrdiff_t |
| using | pointer = const T * |
| using | reference = const T & |
Public Member Functions | |
| const_iterator_base (const ARRAY &deque, size_t uiIndex) | |
| EZ_ALWAYS_INLINE const_iterator_base & | operator++ () |
| EZ_ALWAYS_INLINE const_iterator_base & | operator-- () |
| EZ_ALWAYS_INLINE const_iterator_base | operator++ (int) |
| EZ_ALWAYS_INLINE const_iterator_base | operator-- (int) |
| EZ_ALWAYS_INLINE bool | operator== (const const_iterator_base &rhs) const |
| EZ_ALWAYS_INLINE bool | operator!= (const const_iterator_base &rhs) const |
| EZ_ALWAYS_INLINE std::ptrdiff_t | operator- (const const_iterator_base &rhs) const |
| EZ_ALWAYS_INLINE const_iterator_base | operator+ (std::ptrdiff_t rhs) const |
| EZ_ALWAYS_INLINE const_iterator_base | operator- (std::ptrdiff_t rhs) const |
| EZ_ALWAYS_INLINE void | operator+= (std::ptrdiff_t rhs) |
| EZ_ALWAYS_INLINE void | operator-= (std::ptrdiff_t rhs) |
| const T & | operator* () const |
| EZ_ALWAYS_INLINE const T * | operator-> () const |
| EZ_ALWAYS_INLINE bool | operator< (const const_iterator_base &rhs) const |
| EZ_ALWAYS_INLINE bool | operator> (const const_iterator_base &rhs) const |
| EZ_ALWAYS_INLINE bool | operator<= (const const_iterator_base &rhs) const |
| EZ_ALWAYS_INLINE bool | operator>= (const const_iterator_base &rhs) const |
| EZ_ALWAYS_INLINE const T & | operator[] (size_t uiIndex) const |
Protected Attributes | |
| ARRAY * | m_pArray |
| size_t | m_uiIndex |
Base class for STL like random access iterators.