mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
24 lines
629 B
C++
24 lines
629 B
C++
#ifndef SPROUT_ALGORITHM_MIN_HPP
|
|
#define SPROUT_ALGORITHM_MIN_HPP
|
|
|
|
#include <sprout/config.hpp>
|
|
#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>
|
|
inline SPROUT_CONSTEXPR T const&
|
|
min(T const& a, T const& b, Compare comp) {
|
|
return comp(b, a) ? b : a;
|
|
}
|
|
|
|
template<typename T>
|
|
inline SPROUT_CONSTEXPR T const&
|
|
min(T const& a, T const& b) {
|
|
return sprout::min(a, b, NS_SSCRISK_CEL_OR_SPROUT::less<T>());
|
|
}
|
|
} // namespace sprout
|
|
|
|
#endif // #ifndef SPROUT_ALGORITHM_MIN_HPP
|