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

194 {
195 while (first != last) {
196 if (!pred(*first)) {
197 return first;
198 }
199 ++first;
200 }
201 return last;
202}