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 55 of file set.h.

55 {
56 for (auto it = begin(); it != end(); ++it) {
57 if (*it == key) {
58 return it;
59 }
60 }
61 return end();
62 }
iterator end()
Definition set.h:42
iterator begin()
Definition set.h:41

References begin(), and end().

+ Here is the call graph for this function: