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

◆ find() [1/2]

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

Definition at line 44 of file set.h.

44 {
45 for (auto it = begin(); it != end(); ++it) {
46 if (*it == key) {
47 return it;
48 }
49 }
50 return end();
51 }
iterator end()
Definition set.h:40
iterator begin()
Definition set.h:39

References begin(), and end().

Referenced by emplace(), erase(), has(), insert(), insert(), next(), and prev().

+ Here is the call graph for this function:
+ Here is the caller graph for this function: