FastLED 3.9.15
Loading...
Searching...
No Matches

◆ equal_range() [1/2]

template<typename Key, typename T, typename Hash = Hash<Key>, typename KeyEqual = EqualTo<Key>, int INLINED_COUNT = FASTLED_HASHMAP_INLINED_COUNT>
pair< iterator, iterator > fl::unordered_map< Key, T, Hash, KeyEqual, INLINED_COUNT >::equal_range ( const Key & key)
inline

Definition at line 661 of file unordered_map.h.

661 {
662 iterator it = find(key);
663 if (it == end()) {
664 return {end(), end()};
665 }
666 iterator next = it;
667 ++next;
668 return {it, next};
669 }
iterator find(const Key &key)