Return an iterator to the first element of Range for which P is false.
Declared in <llvm/ADT/STLExtras.h>
template<
typename R,
typename UnaryPredicate>
auto
find_if_not(
R&& Range,
UnaryPredicate P);
Iterator to the first non-matching element, or the end iterator.
| Name | Description |
|---|---|
| Range | Range to search. |
| P | Unary predicate applied to each element. |