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

◆ find() [2/2]

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

Definition at line 48 of file set.h.

48 {
49 for (auto it = begin(); it != end(); ++it) {
50 if (*it == key) {
51 return it;
52 }
53 }
54 return end();
55 }
iterator end()
Definition set.h:29
iterator begin()
Definition set.h:26

References begin(), and end().

+ Here is the call graph for this function: