Sprout/sprout/math/llround.hpp

51 lines
1.3 KiB
C++
Raw Normal View History

2012-07-04 23:03:32 +00:00
#ifndef SPROUT_MATH_LLROUND_HPP
#define SPROUT_MATH_LLROUND_HPP
2013-05-06 14:57:38 +00:00
#include <limits>
2012-07-04 23:03:32 +00:00
#include <type_traits>
#include <sprout/config.hpp>
#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 long
llround(FloatType x) {
2013-05-06 14:57:38 +00:00
return sprout::math::isnan(x) || sprout::math::isinf(x) ? std::numeric_limits<long long>::min()
#if SPROUT_USE_BUILTIN_CMATH_FUNCTION
: std::llround(x)
#else
: sprout::math::iround<long 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 long
llround(IntType x) {
2013-05-06 14:57:38 +00:00
#if SPROUT_USE_BUILTIN_CMATH_FUNCTION
return std::llround(x);
#else
return sprout::math::iround<long long>(x);
#endif
2012-07-04 23:03:32 +00:00
}
} // namespace detail
2012-07-04 23:03:32 +00:00
2013-05-06 14:57:38 +00:00
using sprout::math::detail::llround;
2012-07-04 23:03:32 +00:00
} // namespace math
using sprout::math::llround;
} // namespace sprout
#endif // #ifndef SPROUT_MATH_LLROUND_HPP