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