1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-21 01:24:21 +00:00

Added method HashMap::Iterator::reset()

This commit is contained in:
jules 2016-02-12 10:21:23 +00:00
parent e1ba584203
commit e051b5ad8f

View file

@ -424,6 +424,13 @@ public:
return entry != nullptr ? entry->value : ValueType();
}
/** Resets the iterator to its starting position. */
void reset() noexcept
{
entry = nullptr;
index = 0;
}
private:
//==============================================================================
const HashMap& hashMap;