4#ifndef TETL_ALGORITHM_NONE_OF_HPP
5#define TETL_ALGORITHM_NONE_OF_HPP
7#include <etl/_algorithm/find_if.hpp>
13template <
typename InputIt,
typename Predicate>
14[[nodiscard]]
constexpr auto none_of(InputIt first, InputIt last, Predicate p) ->
bool
16 return etl::find_if(first, last, p) == last;
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:14
Definition adjacent_find.hpp:9