![]() |
ezEngine
Release 25.03
|
Base class for Pointer like reverse 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 = T * |
using | reference = T & |
Public Member Functions | |
const_reverse_pointer_iterator (T const *pPtr) | |
EZ_ALWAYS_INLINE const_reverse_pointer_iterator & | operator++ () |
EZ_ALWAYS_INLINE const_reverse_pointer_iterator & | operator-- () |
EZ_ALWAYS_INLINE const_reverse_pointer_iterator | operator++ (int) |
EZ_ALWAYS_INLINE const_reverse_pointer_iterator | operator-- (int) |
EZ_ALWAYS_INLINE bool | operator== (const const_reverse_pointer_iterator &rhs) const |
EZ_ALWAYS_INLINE bool | operator!= (const const_reverse_pointer_iterator &rhs) const |
EZ_ALWAYS_INLINE std::ptrdiff_t | operator- (const const_reverse_pointer_iterator &rhs) const |
EZ_ALWAYS_INLINE const_reverse_pointer_iterator | operator+ (std::ptrdiff_t rhs) const |
EZ_ALWAYS_INLINE const_reverse_pointer_iterator | 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 EZ_ALWAYS_INLINE T & | operator* () const |
const EZ_ALWAYS_INLINE T * | operator-> () const |
EZ_ALWAYS_INLINE bool | operator< (const const_reverse_pointer_iterator &rhs) const |
EZ_ALWAYS_INLINE bool | operator> (const const_reverse_pointer_iterator &rhs) const |
EZ_ALWAYS_INLINE bool | operator<= (const const_reverse_pointer_iterator &rhs) const |
EZ_ALWAYS_INLINE bool | operator>= (const const_reverse_pointer_iterator &rhs) const |
const EZ_ALWAYS_INLINE T & | operator[] (std::ptrdiff_t index) const |
Protected Attributes | |
T * | m_pPtr |
Base class for Pointer like reverse iterators.