![]() |
ezEngine Release 25.08
|
Const iterator, don't use directly, use ranged based for loops or call begin() end(). More...
#include <RangeView.h>

Public Types | |
| using | iterator_category = std::forward_iterator_tag |
| using | value_type = ConstIterator |
| using | pointer = ConstIterator * |
| using | reference = ConstIterator & |
Public Member Functions | |
| EZ_DECLARE_POD_TYPE () | |
| EZ_ALWAYS_INLINE | ConstIterator (const ConstIterator &rhs)=default |
| EZ_FORCE_INLINE void | Next () |
| EZ_FORCE_INLINE ValueType | Value () const |
| EZ_ALWAYS_INLINE ValueType | operator* () const |
| EZ_ALWAYS_INLINE void | operator++ () |
| EZ_FORCE_INLINE bool | operator== (const typename ezRangeView< ValueType, IteratorType >::ConstIterator &it2) const |
| EZ_FORCE_INLINE bool | operator!= (const typename ezRangeView< ValueType, IteratorType >::ConstIterator &it2) const |
Protected Member Functions | |
| EZ_FORCE_INLINE | ConstIterator (const ezRangeView< ValueType, IteratorType > *view, IteratorType pos) |
Protected Attributes | |
| const ezRangeView< ValueType, IteratorType > * | m_pView = nullptr |
| IteratorType | m_Pos |
Friends | |
| class | ezRangeView< ValueType, IteratorType > |
Const iterator, don't use directly, use ranged based for loops or call begin() end().