Iterates over the items in a HashMap.
To use it, repeatedly call next() until it returns false, e.g.
The order in which items are iterated bears no resemblance to the order in which they were originally added!
Obviously as soon as you call any non-const methods on the original hash-map, any iterators that were created beforehand will cease to be valid, and should not be used.
Public Member Functions | |
Iterator (const HashMap &hashMapToIterate) noexcept | |
Iterator (const Iterator &other) noexcept | |
bool | next () noexcept |
Moves to the next item, if one is available. | |
KeyType | getKey () const |
Returns the current item's key. | |
ValueType | getValue () const |
Returns the current item's value. | |
void | reset () noexcept |
Resets the iterator to its starting position. | |
Iterator & | operator++ () noexcept |
ValueType | operator* () const |
bool | operator!= (const Iterator &other) const noexcept |
void | resetToEnd () noexcept |
|
noexcept |
References juce::HashMap< KeyType, ValueType, HashFunctionType, TypeOfCriticalSectionToUse >::HashMap().
Referenced by Iterator(), operator!=(), and operator++().
|
noexcept |
References Iterator().
|
noexcept |
Moves to the next item, if one is available.
When this returns true, you can get the item's key and value using getKey() and getValue(). If it returns false, the iteration has finished and you should stop.
Referenced by juce::HashMap< KeyType, ValueType, HashFunctionType, TypeOfCriticalSectionToUse >::begin(), and operator++().
KeyType juce::HashMap< KeyType, ValueType, HashFunctionType, TypeOfCriticalSectionToUse >::Iterator::getKey | ( | ) | const |
Returns the current item's key.
This should only be called when a call to next() has just returned true.
ValueType juce::HashMap< KeyType, ValueType, HashFunctionType, TypeOfCriticalSectionToUse >::Iterator::getValue | ( | ) | const |
Returns the current item's value.
This should only be called when a call to next() has just returned true.
Referenced by operator*().
|
noexcept |
Resets the iterator to its starting position.
|
noexcept |
References Iterator(), and next().
ValueType juce::HashMap< KeyType, ValueType, HashFunctionType, TypeOfCriticalSectionToUse >::Iterator::operator* | ( | ) | const |
References getValue().
|
noexcept |
References Iterator().
|
noexcept |