1
0
Fork 0
mirror of https://github.com/bolero-MURAKAMI/Sprout synced 2025-08-03 12:49:50 +00:00

add math: reminder, rem_quo(same as remquo)

This commit is contained in:
bolero-MURAKAMI 2013-02-10 17:12:31 +09:00
parent 434aa8d3c5
commit 887dba1849
9 changed files with 189 additions and 35 deletions

45
sprout/math/frac_int.hpp Normal file
View file

@ -0,0 +1,45 @@
#ifndef SPROUT_MATH_FRAC_INT_HPP
#define SPROUT_MATH_FRAC_INT_HPP
#include <type_traits>
#include <sprout/config.hpp>
#include <sprout/math/detail/config.hpp>
#include <sprout/math/integer_part.hpp>
#include <sprout/type_traits/enabler_if.hpp>
#include <sprout/utility/pair/pair.hpp>
namespace sprout {
namespace math {
namespace detail {
template<typename T>
inline SPROUT_CONSTEXPR sprout::pair<T, T>
frac_int_impl(T x, T ipart) {
return sprout::pair<T, T>(x - ipart, ipart);
}
template<
typename FloatType,
typename sprout::enabler_if<std::is_floating_point<FloatType>::value>::type = sprout::enabler
>
inline SPROUT_CONSTEXPR sprout::pair<FloatType, FloatType>
frac_int(FloatType x) {
return sprout::math::detail::frac_int_impl(x, sprout::math::integer_part(x));
}
template<
typename IntType,
typename sprout::enabler_if<std::is_integral<IntType>::value>::type = sprout::enabler
>
inline SPROUT_CONSTEXPR sprout::pair<double, double>
frac_int(IntType x) {
return sprout::math::detail::frac_int(static_cast<double>(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