#ifndef SPROUT_MATH_ISSUBNORMAL_HPP #define SPROUT_MATH_ISSUBNORMAL_HPP #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 int issubnormal_or_zero(FloatType x) { return x > 0 ? x < std::numeric_limits::min() : x > -std::numeric_limits::min() ; } template< typename FloatType, typename sprout::enabler_if::value>::type = sprout::enabler > inline SPROUT_CONSTEXPR int issubnormal(FloatType x) { return !sprout::math::iszero(x) && sprout::math::detail::issubnormal_or_zero(x) ; } } // namespace detail using sprout::math::detail::issubnormal; } // namespace math using sprout::math::issubnormal; } // namespace sprout #endif // #ifndef SPROUT_MATH_ISSUBNORMAL_HPP