4#ifndef TETL_ALGORITHM_FIND_IF_NOT_HPP
5#define TETL_ALGORITHM_FIND_IF_NOT_HPP
18template <
typename InputIt,
typename Predicate>
19[[nodiscard]]
constexpr auto find_if_not(InputIt first, InputIt last, Predicate pred)
noexcept -> InputIt
21 for (; first != last; ++first) {
22 if (
not pred(*first)) {
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:19
Definition adjacent_find.hpp:9