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

◆ find() [2/2]

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

Definition at line 254 of file set.h.

254 {
255 for (auto it = begin(); it != end(); ++it) {
256 if (*it == key) {
257 return it;
258 }
259 }
260 return end();
261 }
iterator begin()
Definition set.h:237
iterator end()
Definition set.h:238

References begin(), and end().

+ Here is the call graph for this function: