/// \file // Range v3 library // // Copyright Eric Niebler 2014-present // Copyright Casey Carter 2015 // // Use, modification and distribution is subject to the // Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) // // Project home: https://github.com/ericniebler/range-v3 // #ifndef RANGES_V3_ALGORITHM_MIN_HPP #define RANGES_V3_ALGORITHM_MIN_HPP #include #include #include #include #include #include #include #include #include #include #include namespace ranges { /// \addtogroup group-algorithms /// @{ RANGES_BEGIN_NIEBLOID(min) /// \brief function template \c min template constexpr auto RANGES_FUN_NIEBLOID(min)( T const & a, T const & b, C pred = C{}, P proj = P{}) // ->CPP_ret(T const &)( // requires indirect_strict_weak_order>) { return invoke(pred, invoke(proj, b), invoke(proj, a)) ? b : a; } /// \overload template constexpr auto RANGES_FUN_NIEBLOID(min)(Rng && rng, C pred = C{}, P proj = P{}) // ->CPP_ret(range_value_t)( // requires input_range && indirect_strict_weak_order, P>> && indirectly_copyable_storable, range_value_t *>) { auto first = ranges::begin(rng); auto last = ranges::end(rng); RANGES_EXPECT(first != last); range_value_t result = *first; while(++first != last) { auto && tmp = *first; if(invoke(pred, invoke(proj, tmp), invoke(proj, result))) result = (decltype(tmp) &&)tmp; } return result; } /// \overload template constexpr auto RANGES_FUN_NIEBLOID(min)( std::initializer_list const && rng, C pred = C{}, P proj = P{}) // ->CPP_ret(T)( // requires copyable && indirect_strict_weak_order>) { return (*this)(rng, std::move(pred), std::move(proj)); } RANGES_END_NIEBLOID(min) namespace cpp20 { using ranges::min; } /// @} } // namespace ranges #endif // include guard