Search for the first character not satisfying the predicate F
Declared in <llvm/ADT/StringRef.h>
[[nodiscard]]
size_t
find_if_not(
function_ref<bool(char)> F,
size_t From = 0) const;
The index of the first character not satisfying F starting from From, or npos if not found.
The return value should not be discarded.
| Name | Description |
|---|---|
| F | Predicate that characters must not satisfy. |
| From | Index to start searching from. |