#ifndef SPROUT_MATH_SCALBLN_HPP #define SPROUT_MATH_SCALBLN_HPP #include #include #include #include #include #include #include #include namespace sprout { namespace math { namespace detail { template inline SPROUT_CONSTEXPR T scalbln_impl(T x, long exp) { return x * sprout::detail::pow_n(T(std::numeric_limits::radix), exp); } template< typename FloatType, typename sprout::enabler_if::value>::type = sprout::enabler > inline SPROUT_CONSTEXPR FloatType scalbln(FloatType x, long exp) { return x == std::numeric_limits::infinity() ? std::numeric_limits::infinity() : x == -std::numeric_limits::infinity() ? -std::numeric_limits::infinity() : exp == 0 ? x : x == 0 ? sprout::math::copysign(FloatType(0), x) : static_cast(sprout::math::detail::scalbln_impl(static_cast::type>(x), exp)) ; } template< typename IntType, typename sprout::enabler_if::value>::type = sprout::enabler > inline SPROUT_CONSTEXPR double scalbln(IntType x, long exp) { return sprout::math::detail::scalbln(static_cast(x), exp); } } // namespace detail using NS_SPROUT_MATH_DETAIL::scalbln; } // namespace math using sprout::math::scalbln; } // namespace sprout #endif // #ifndef SPROUT_MATH_SCALBLN_HPP