2012-07-04 23:03:32 +00:00
|
|
|
#ifndef SPROUT_MATH_LROUND_HPP
|
|
|
|
#define SPROUT_MATH_LROUND_HPP
|
|
|
|
|
|
|
|
#include <type_traits>
|
|
|
|
#include <sprout/config.hpp>
|
2013-08-06 15:15:09 +00:00
|
|
|
#include <sprout/limits.hpp>
|
2012-07-04 23:03:32 +00:00
|
|
|
#include <sprout/math/detail/config.hpp>
|
2013-05-06 14:57:38 +00:00
|
|
|
#include <sprout/math/isnan.hpp>
|
|
|
|
#include <sprout/math/isinf.hpp>
|
2013-02-10 02:54:54 +00:00
|
|
|
#include <sprout/math/iround.hpp>
|
2012-07-04 23:03:32 +00:00
|
|
|
#include <sprout/type_traits/enabler_if.hpp>
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace math {
|
|
|
|
namespace detail {
|
|
|
|
template<
|
|
|
|
typename FloatType,
|
|
|
|
typename sprout::enabler_if<std::is_floating_point<FloatType>::value>::type = sprout::enabler
|
|
|
|
>
|
|
|
|
inline SPROUT_CONSTEXPR long
|
|
|
|
lround(FloatType x) {
|
2013-08-06 15:15:09 +00:00
|
|
|
return sprout::math::isnan(x) || sprout::math::isinf(x) ? sprout::numeric_limits<long>::min()
|
2013-05-06 14:57:38 +00:00
|
|
|
#if SPROUT_USE_BUILTIN_CMATH_FUNCTION
|
|
|
|
: std::lround(x)
|
|
|
|
#else
|
|
|
|
: sprout::math::iround<long>(x);
|
|
|
|
#endif
|
|
|
|
;
|
2012-07-04 23:03:32 +00:00
|
|
|
}
|
|
|
|
template<
|
|
|
|
typename IntType,
|
|
|
|
typename sprout::enabler_if<std::is_integral<IntType>::value>::type = sprout::enabler
|
|
|
|
>
|
|
|
|
inline SPROUT_CONSTEXPR long
|
|
|
|
lround(IntType x) {
|
2013-05-06 14:57:38 +00:00
|
|
|
#if SPROUT_USE_BUILTIN_CMATH_FUNCTION
|
|
|
|
return std::lround(x);
|
|
|
|
#else
|
|
|
|
return sprout::math::iround<long>(x);
|
|
|
|
#endif
|
2012-07-04 23:03:32 +00:00
|
|
|
}
|
2012-11-12 08:11:48 +00:00
|
|
|
} // namespace detail
|
2012-07-04 23:03:32 +00:00
|
|
|
|
2013-05-06 14:57:38 +00:00
|
|
|
using sprout::math::detail::lround;
|
2012-07-04 23:03:32 +00:00
|
|
|
} // namespace math
|
|
|
|
|
|
|
|
using sprout::math::lround;
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_MATH_LROUND_HPP
|