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

◆ find() [2/2]

template<typename Key, typename Value, size_t N>
const_iterator fl::FixedMap< Key, Value, N >::find ( const Key & key) const
inline

Definition at line 49 of file map.h.

49 {
50 for (auto it = begin(); it != end(); ++it) {
51 if (it->first == key) {
52 return it;
53 }
54 }
55 return end();
56 }
iterator end()
Definition map.h:36
iterator begin()
Definition map.h:35