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