#ifndef SPROUT_MATH_FLOAT_FRAC_INT_HPP #define SPROUT_MATH_FLOAT_FRAC_INT_HPP #include #include #include #include #include #include namespace sprout { namespace math { namespace detail { template inline SPROUT_CONSTEXPR sprout::pair float_frac_int_impl(T x, T ipart) { return sprout::pair(x - ipart, ipart); } template< typename FloatType, typename sprout::enabler_if::value>::type = sprout::enabler > inline SPROUT_CONSTEXPR sprout::pair float_frac_int(FloatType x) { return sprout::math::detail::float_frac_int_impl(x, sprout::math::float_integer_part(x)); } template< typename IntType, typename sprout::enabler_if::value>::type = sprout::enabler > inline SPROUT_CONSTEXPR sprout::pair float_frac_int(IntType x) { return sprout::math::detail::float_frac_int(static_cast(x)); } } // namespace detail using sprout::math::detail::float_frac_int; } // namespace math using sprout::math::float_frac_int; } // namespace sprout #endif // #ifndef SPROUT_MATH_FLOAT_FRAC_INT_HPP