llvm::find_if_not

Return an iterator to the first element of Range for which P is false.

Synopsis

Declared in <llvm/ADT/STLExtras.h>

template<
    typename R,
    typename UnaryPredicate>
auto
find_if_not(
    R&& Range,
    UnaryPredicate P);

Return Value

Iterator to the first non-matching element, or the end iterator.

Parameters

NameDescription
RangeRange to search.
PUnary predicate applied to each element.