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

◆ find_if_not()

template<typename Iterator, typename UnaryPredicate>
Iterator fl::find_if_not ( Iterator first,
Iterator last,
UnaryPredicate pred )

Definition at line 234 of file algorithm.h.

234 {
235 while (first != last) {
236 if (!pred(*first)) {
237 return first;
238 }
239 ++first;
240 }
241 return last;
242}

References FL_NOEXCEPT.