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
.
fl
Generated on Tue Jun 16 2026 00:07:04 for FastLED by
1.13.2