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

◆ operator[]() [2/2]

template<typename Key, typename Value, fl::size N>
const Value & fl::unsorted_map_fixed< Key, Value, N >::operator[] ( const Key & key) const
inline

Definition at line 203 of file map.h.

203 {
205 if (it != end()) {
206 return it->second;
207 }
208 static Value default_value;
209 return default_value;
210 }
VectorType::const_iterator const_iterator
Definition map.h:30
iterator end()
Definition map.h:36
iterator find(const Key &key)
Definition map.h:40

References end(), and find().

+ Here is the call graph for this function: