#ifndef SPROUT_MATH_FRAC_INT_HPP #define SPROUT_MATH_FRAC_INT_HPP #include #include #include #include #include #include #include #include #include namespace sprout { namespace math { namespace detail { template inline SPROUT_CONSTEXPR sprout::pair frac_int_impl(T x, T ipart) { typedef sprout::pair type; return sprout::math::isnan(x) ? type(x, ipart) : x == std::numeric_limits::infinity() || x == -std::numeric_limits::infinity() ? type(sprout::math::copysign(T(0), x), ipart) : x == 0 ? type(x, ipart) : x == ipart ? type(T(0) * x, ipart) : type(sprout::math::copysign(x - ipart, x), ipart) ; } template< typename FloatType, typename sprout::enabler_if::value>::type = sprout::enabler > inline SPROUT_CONSTEXPR sprout::pair frac_int(FloatType x) { return sprout::math::detail::frac_int_impl(x, sprout::integer_part(x)); } template< typename IntType, typename sprout::enabler_if::value>::type = sprout::enabler > inline SPROUT_CONSTEXPR sprout::pair frac_int(IntType x) { return sprout::math::detail::frac_int(static_cast(x)); } } // namespace detail using sprout::math::detail::frac_int; } // namespace math using sprout::math::frac_int; } // namespace sprout #endif // #ifndef SPROUT_MATH_FRAC_INT_HPP