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 212 of file algorithm.h.

212 {
213 while (first != last) {
214 if (*first == value) {
215 return first;
216 }
217 ++first;
218 }
219 return last;
220}
constexpr int type_rank< T >::value

References FL_NOEXCEPT, and type_rank< T >::value.

Referenced by fl::task::Executor::register_runner(), and fl::task::Executor::unregister_runner().

+ Here is the caller graph for this function: