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
Name |
Description |
Range |
Range to search. |
P |
Unary predicate applied to each element. |
Created with MrDocs