4 template <
class InputIt,
class T> constexpr InputIt
find(InputIt first, InputIt last,
const T& value) {
5 for (; first != last; ++first) {
12 template <
class InputIt,
class UnaryPredicate> constexpr InputIt
find_if(InputIt first, InputIt last, UnaryPredicate p) {
13 for (; first != last; ++first) {
Definition: cexpr_algs.hpp:3
constexpr InputIt find_if(InputIt first, InputIt last, UnaryPredicate p)
Definition: cexpr_algs.hpp:12
constexpr InputIt find(InputIt first, InputIt last, const T &value)
Definition: cexpr_algs.hpp:4