#ifndef SPROUT_MATH_ASINH_HPP #define SPROUT_MATH_ASINH_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 asinh(FloatType x) { return x == std::numeric_limits::infinity() ? std::numeric_limits::infinity() : x == -std::numeric_limits::infinity() ? -std::numeric_limits::infinity() : sprout::math::log(x + sprout::math::sqrt(x * x + 1)) ; } template< typename IntType, typename sprout::enabler_if::value>::type = sprout::enabler > inline SPROUT_CONSTEXPR double asinh(IntType x) { return sprout::math::detail::asinh(static_cast(x)); } } // namespace detail using NS_SPROUT_MATH_DETAIL::asinh; } // namespace math using sprout::math::asinh; } // namespace sprout #endif // #ifndef SPROUT_MATH_ASINH_HPP