|
| XII_DECLARE_POD_TYPE () |
|
XII_ALWAYS_INLINE | xiiMapBaseConstIteratorBase () |
| Constructs an invalid iterator.
|
|
XII_ALWAYS_INLINE bool | IsValid () const |
| Checks whether this iterator points to a valid element.
|
|
XII_ALWAYS_INLINE bool | operator== (const xiiMapBaseConstIteratorBase &it2) const |
| Checks whether the two iterators point to the same element.
|
|
XII_FORCE_INLINE const KeyType & | Key () const |
| Returns the 'key' of the element that this iterator points to.
|
|
XII_FORCE_INLINE const ValueType & | Value () const |
| Returns the 'value' of the element that this iterator points to.
|
|
XII_ALWAYS_INLINE xiiMapBaseConstIteratorBase & | operator* () |
| Returns '*this' to enable foreach.
|
|
void | Next () |
| Advances the iterator to the next element in the map. The iterator will not be valid anymore, if the end is reached.
|
|
void | Prev () |
| Advances the iterator to the previous element in the map. The iterator will not be valid anymore, if the end is reached.
|
|
XII_ALWAYS_INLINE void | operator++ () |
| Shorthand for 'Next'.
|
|
XII_ALWAYS_INLINE void | operator-- () |
| Shorthand for 'Prev'.
|
|
XII_ALWAYS_INLINE Pointer | operator-> () const |
|
template<std::size_t Index> |
std::tuple_element_t< Index, xiiMapBaseConstIteratorBase > & | get () const |
|
template<typename KeyType, typename ValueType, typename Comparer, bool REVERSE>
struct xiiMapBaseConstIteratorBase< KeyType, ValueType, Comparer, REVERSE >
Base class for all iterators.