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

◆ find()

template<typename Iterator, typename T>
Iterator fl::find ( Iterator first,
Iterator last,
const T & value )

Definition at line 172 of file algorithm.h.

172 {
173 while (first != last) {
174 if (*first == value) {
175 return first;
176 }
177 ++first;
178 }
179 return last;
180}

Referenced by fl::AsyncManager::register_runner(), and fl::AsyncManager::unregister_runner().

+ Here is the caller graph for this function: