mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
52 lines
1.6 KiB
C++
52 lines
1.6 KiB
C++
#ifndef SPROUT_MATH_LDEXP_HPP
|
|
#define SPROUT_MATH_LDEXP_HPP
|
|
|
|
#include <limits>
|
|
#include <type_traits>
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/detail/pow.hpp>
|
|
#include <sprout/math/detail/config.hpp>
|
|
#include <sprout/math/detail/float_compute.hpp>
|
|
#include <sprout/math/isnan.hpp>
|
|
#include <sprout/type_traits/enabler_if.hpp>
|
|
|
|
namespace sprout {
|
|
namespace math {
|
|
namespace detail {
|
|
template<typename T>
|
|
inline SPROUT_CONSTEXPR T
|
|
ldexp_impl(T x, int exp) {
|
|
return x * sprout::detail::pow_n(T(2), exp);
|
|
}
|
|
|
|
template<
|
|
typename FloatType,
|
|
typename sprout::enabler_if<std::is_floating_point<FloatType>::value>::type = sprout::enabler
|
|
>
|
|
inline SPROUT_CONSTEXPR FloatType
|
|
ldexp(FloatType x, int exp) {
|
|
return sprout::math::isnan(x) ? x
|
|
: x == std::numeric_limits<FloatType>::infinity() ? std::numeric_limits<FloatType>::infinity()
|
|
: x == -std::numeric_limits<FloatType>::infinity() ? -std::numeric_limits<FloatType>::infinity()
|
|
: exp == 0 ? x
|
|
: x == 0 ? x
|
|
: static_cast<FloatType>(sprout::math::detail::ldexp_impl(static_cast<typename sprout::math::detail::float_compute<FloatType>::type>(x), exp))
|
|
;
|
|
}
|
|
template<
|
|
typename IntType,
|
|
typename sprout::enabler_if<std::is_integral<IntType>::value>::type = sprout::enabler
|
|
>
|
|
inline SPROUT_CONSTEXPR double
|
|
ldexp(IntType x, int exp) {
|
|
return sprout::math::detail::ldexp(static_cast<double>(x), exp);
|
|
}
|
|
} // namespace detail
|
|
|
|
using NS_SPROUT_MATH_DETAIL::ldexp;
|
|
} // namespace math
|
|
|
|
using sprout::math::ldexp;
|
|
} // namespace sprout
|
|
|
|
#endif // #ifndef SPROUT_MATH_LDEXP_HPP
|