#ifndef SPROUT_MATH_FLOAT_PAIR_HPP #define SPROUT_MATH_FLOAT_PAIR_HPP #include #include #include #include #include #include #include #include namespace sprout { namespace math { namespace detail { template inline SPROUT_CONSTEXPR sprout::pair float_pair_impl(T x, int exp) { return sprout::pair(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_pair(FloatType x) { return sprout::math::detail::float_pair_impl(x, sprout::math::float_exponent(x)); } template< typename IntType, typename sprout::enabler_if::value>::type = sprout::enabler > inline SPROUT_CONSTEXPR sprout::pair float_pair(IntType x) { return sprout::math::detail::float_pair(static_cast(x)); } } // namespace detail using sprout::math::detail::float_pair; } // namespace math using sprout::math::float_pair; } // namespace sprout #endif // #ifndef SPROUT_MATH_FLOAT_PAIR_HPP