#ifndef SPROUT_MATH_FLOAT_SIG_EXP_HPP #define SPROUT_MATH_FLOAT_SIG_EXP_HPP #include #include #include #include #include #include #include #include namespace sprout { namespace math { namespace detail { template inline SPROUT_CONSTEXPR sprout::pair float_sig_exp_impl(T x, int exp) { typedef sprout::pair type; return x == 0 ? type(T(0), exp) : x == std::numeric_limits::infinity() ? type(std::numeric_limits::infinity(), exp) : x == -std::numeric_limits::infinity() ? type(-std::numeric_limits::infinity(), exp) : x == std::numeric_limits::quiet_NaN() ? type(std::numeric_limits::quiet_NaN(), exp) : type(x / sprout::detail::pow_n(T(std::numeric_limits::radix), exp), exp) ; } template< typename FloatType, typename sprout::enabler_if::value>::type = sprout::enabler > inline SPROUT_CONSTEXPR sprout::pair float_sig_exp(FloatType x) { return sprout::math::detail::float_sig_exp_impl(x, sprout::float_exponent(x)); } template< typename IntType, typename sprout::enabler_if::value>::type = sprout::enabler > inline SPROUT_CONSTEXPR sprout::pair float_sig_exp(IntType x) { return sprout::math::detail::float_sig_exp(static_cast(x)); } } // namespace detail using sprout::math::detail::float_sig_exp; } // namespace math using sprout::math::float_sig_exp; } // namespace sprout #endif // #ifndef SPROUT_MATH_FLOAT_SIG_EXP_HPP