2012-04-01 13:15:09 +00:00
|
|
|
#ifndef SPROUT_ALGORITHM_MINMAX_HPP
|
|
|
|
#define SPROUT_ALGORITHM_MINMAX_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
2013-02-07 14:12:57 +00:00
|
|
|
#include <sprout/utility/pair/pair.hpp>
|
2012-04-01 13:15:09 +00:00
|
|
|
#include HDR_FUNCTIONAL_SSCRISK_CEL_OR_SPROUT
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
// Copyright (C) 2011 RiSK (sscrisk)
|
|
|
|
|
|
|
|
// 25.4.7 Minimum and maximum
|
|
|
|
template<typename T, typename Compare>
|
2012-10-06 04:53:07 +00:00
|
|
|
inline SPROUT_CONSTEXPR sprout::pair<T, T>
|
|
|
|
minmax(T const& a, T const& b, Compare comp) {
|
2012-04-01 13:15:09 +00:00
|
|
|
return comp(b, a) ? sprout::pair<T, T>(b, a) : sprout::pair<T, T>(a, b);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T>
|
2012-10-06 04:53:07 +00:00
|
|
|
inline SPROUT_CONSTEXPR sprout::pair<T, T>
|
|
|
|
minmax(T const& a, T const& b) {
|
2012-04-01 13:15:09 +00:00
|
|
|
return sprout::minmax(a, b, NS_SSCRISK_CEL_OR_SPROUT::less<T>());
|
|
|
|
}
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_ALGORITHM_MINMAX_HPP
|