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

◆ at() [1/2]

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

Definition at line 643 of file unordered_map.h.

643 {
644 T* value = find_value(key);
645 FASTLED_ASSERT(value != nullptr, "unordered_map::at: key not found");
646 return *value;
647 }
T * find_value(const Key &key)