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 any_of(InputIt first, InputIt last, Predicate p) -> bool
Checks if unary predicate p returns true for at least one element in the range [first,...
Definition any_of.hpp:15