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

◆ find() [1/2]

template<typename Key>
iterator fl::VectorSet< Key >::find ( const Key & key)
inline

Definition at line 245 of file set.h.

245 {
246 for (auto it = begin(); it != end(); ++it) {
247 if (*it == key) {
248 return it;
249 }
250 }
251 return end();
252 }
iterator begin()
Definition set.h:237
iterator end()
Definition set.h:238

References begin(), and end().

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

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