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

◆ at() [2/2]

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

Definition at line 649 of file unordered_map.h.

649 {
650 const T* value = find_value(key);
651 FASTLED_ASSERT(value != nullptr, "unordered_map::at: key not found");
652 return *value;
653 }
T * find_value(const Key &key)