4#ifndef TETL_ALGORITHM_FIND_HPP
5#define TETL_ALGORITHM_FIND_HPP
18template <
typename InputIt,
typename T>
19[[nodiscard]]
constexpr auto find(InputIt first, InputIt last, T
const& value)
noexcept -> InputIt
21 for (; first != last; ++first) {
22 if (*first == value) {
constexpr auto find(InputIt first, InputIt last, T const &value) noexcept -> InputIt
Searches for an element equal to value.
Definition find.hpp:19
Definition adjacent_find.hpp:9