#ifndef SPROUT_ALGORITHM_MINMAX_HPP #define SPROUT_ALGORITHM_MINMAX_HPP #include #include #include HDR_FUNCTIONAL_SSCRISK_CEL_OR_SPROUT namespace sprout { // Copyright (C) 2011 RiSK (sscrisk) // 25.4.7 Minimum and maximum template inline SPROUT_CONSTEXPR sprout::pair minmax(T const& a, T const& b, Compare comp) { return comp(b, a) ? sprout::pair(b, a) : sprout::pair(a, b); } template inline SPROUT_CONSTEXPR sprout::pair minmax(T const& a, T const& b) { return sprout::minmax(a, b, NS_SSCRISK_CEL_OR_SPROUT::less()); } } // namespace sprout #endif // #ifndef SPROUT_ALGORITHM_MINMAX_HPP