constexpr auto find_if(InputIt first, InputIt last, Predicate pred) noexcept -> InputIt
Searches for an element for which predicate p returns true.
Definition find_if.hpp:18
constexpr auto none_of(InputIt first, InputIt last, Predicate p) -> bool
Checks if unary predicate p returns true for no elements in the range [first, last).
Definition none_of.hpp:13