Sprout/sprout/math/ldexp.hpp

53 lines
1.7 KiB
C++
Raw Normal View History

#ifndef SPROUT_MATH_LDEXP_HPP
#define SPROUT_MATH_LDEXP_HPP
#include <type_traits>
#include <sprout/config.hpp>
2013-08-06 15:15:09 +00:00
#include <sprout/limits.hpp>
2013-05-04 15:06:30 +00:00
#include <sprout/detail/pow.hpp>
#include <sprout/math/detail/config.hpp>
2013-04-25 06:36:19 +00:00
#include <sprout/math/detail/float_compute.hpp>
2013-05-04 15:06:30 +00:00
#include <sprout/math/isnan.hpp>
#include <sprout/type_traits/enabler_if.hpp>
namespace sprout {
namespace math {
namespace detail {
2013-04-25 06:36:19 +00:00
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) {
2013-05-04 15:06:30 +00:00
return sprout::math::isnan(x) ? x
2013-08-06 15:15:09 +00:00
: x == sprout::numeric_limits<FloatType>::infinity() ? sprout::numeric_limits<FloatType>::infinity()
: x == -sprout::numeric_limits<FloatType>::infinity() ? -sprout::numeric_limits<FloatType>::infinity()
2013-02-14 09:02:43 +00:00
: exp == 0 ? x
2013-04-25 15:25:35 +00:00
: x == 0 ? x
2013-04-25 06:36:19 +00:00
: static_cast<FloatType>(sprout::math::detail::ldexp_impl(static_cast<typename sprout::math::detail::float_compute<FloatType>::type>(x), exp))
2013-02-14 09:02:43 +00:00
;
}
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