constexpr auto all_of(InputIt first, InputIt last, Predicate p) -> bool
Checks if unary predicate p returns true for all elements in the range [first, last).
Definition all_of.hpp:15
constexpr auto find_if_not(InputIt first, InputIt last, Predicate pred) noexcept -> InputIt
Searches for an element for which predicate q returns false.
Definition find_if_not.hpp:18