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

◆ find() [2/2]

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

Definition at line 53 of file set.h.

53 {
54 for (auto it = begin(); it != end(); ++it) {
55 if (*it == key) {
56 return it;
57 }
58 }
59 return end();
60 }
iterator end()
Definition set.h:40
iterator begin()
Definition set.h:39

References begin(), and end().

+ Here is the call graph for this function: