|
| PL_DECLARE_POD_TYPE () |
|
bool | IsValid () const |
| Checks whether this iterator points to a valid element.
|
|
bool | operator== (const plHashTableBaseConstIterator &rhs) const |
| Checks whether the two iterators point to the same element.
|
|
| PL_ADD_DEFAULT_OPERATOR_NOTEQUAL (const plHashTableBaseConstIterator &) |
|
const KeyType & | Key () const |
| Returns the 'key' of the element that this iterator points to.
|
|
const ValueType & | Value () const |
| Returns the 'value' of the element that this iterator points to.
|
|
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 | operator++ () |
| Shorthand for 'Next'.
|
|
PL_ALWAYS_INLINE plHashTableBaseConstIterator & | operator* () |
| Returns '*this' to enable foreach.
|
|
template<typename KeyType, typename ValueType, typename Hasher>
struct plHashTableBaseConstIterator< KeyType, ValueType, Hasher >
Const iterator.