#ifndef SPROUT_MATH_EXPM1_HPP #define SPROUT_MATH_EXPM1_HPP #include #include #include #include #include #include #include namespace sprout { namespace math { namespace detail { template< typename FloatType, typename sprout::enabler_if::value>::type = sprout::enabler > inline SPROUT_CONSTEXPR FloatType expm1(FloatType x) { return x == 0 ? FloatType(0) : x == -std::numeric_limits::infinity() ? FloatType(-1) : x == std::numeric_limits::infinity() ? std::numeric_limits::infinity() : sprout::math::exp(x) - FloatType(1) ; } template< typename IntType, typename sprout::enabler_if::value>::type = sprout::enabler > inline SPROUT_CONSTEXPR double expm1(IntType x) { return sprout::math::detail::expm1(static_cast(x)); } } // namespace detail using NS_SPROUT_MATH_DETAIL::expm1; } // namespace math using sprout::math::expm1; } // namespace sprout #endif // #ifndef SPROUT_MATH_EXPM1_HPP