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

46 {
47 for (auto it = begin(); it != end(); ++it) {
48 if (*it == key) {
49 return it;
50 }
51 }
52 return end();
53 }
iterator end()
Definition set.h:42
iterator begin()
Definition set.h:41

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: