2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
2016-02-25 09:48:28 +00:00
|
|
|
Copyright (c) 2011-2016 Bolero MURAKAMI
|
2013-08-08 09:54:33 +00:00
|
|
|
https://github.com/bolero-MURAKAMI/Sprout
|
|
|
|
|
|
|
|
Distributed under 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)
|
|
|
|
=============================================================================*/
|
2012-10-13 12:06:32 +00:00
|
|
|
#ifndef SPROUT_ALGORITHM_CLAMP_HPP
|
|
|
|
#define SPROUT_ALGORITHM_CLAMP_HPP
|
|
|
|
|
|
|
|
#include <type_traits>
|
|
|
|
#include <sprout/config.hpp>
|
2013-03-21 13:11:40 +00:00
|
|
|
#include <sprout/type_traits/identity.hpp>
|
2012-10-13 12:06:32 +00:00
|
|
|
#include HDR_FUNCTIONAL_SSCRISK_CEL_OR_SPROUT
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
//
|
|
|
|
// clamp
|
|
|
|
//
|
|
|
|
template<typename T, typename Compare>
|
|
|
|
inline SPROUT_CONSTEXPR T const&
|
2013-03-21 13:11:40 +00:00
|
|
|
clamp(T const& value, typename sprout::identity<T>::type const& low, typename sprout::identity<T>::type const& high, Compare comp) {
|
2012-10-13 12:06:32 +00:00
|
|
|
return comp(value, low) ? low
|
|
|
|
: comp(high, value) ? high
|
|
|
|
: value
|
|
|
|
;
|
|
|
|
}
|
|
|
|
template<typename T>
|
|
|
|
inline SPROUT_CONSTEXPR T const&
|
2013-03-21 13:11:40 +00:00
|
|
|
clamp(T const& value, typename sprout::identity<T>::type const& low, typename sprout::identity<T>::type const& high) {
|
2012-10-13 12:06:32 +00:00
|
|
|
return sprout::clamp(
|
|
|
|
value, low, high,
|
|
|
|
NS_SSCRISK_CEL_OR_SPROUT::less<T>()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_ALGORITHM_CLAMP_HPP
|