#ifndef SPROUT_MATH_CEIL_HPP #define SPROUT_MATH_CEIL_HPP #include #include #include #include #include #include #include #include #include namespace sprout { namespace math { namespace detail { template inline SPROUT_CONSTEXPR FloatType ceil_impl(FloatType x, FloatType x0) { return sprout::math::equal_to(x, x0) ? x0 : x0 + 1 ; } template< typename FloatType, typename sprout::enabler_if::value>::type = sprout::enabler > inline SPROUT_CONSTEXPR FloatType ceil(FloatType x) { return sprout::math::isinf(x) ? x : std::numeric_limits::max() < x || std::numeric_limits::max() < -x ? throw std::domain_error("ceil: Sorry, not implemented.") : x < 0 ? -static_cast(static_cast(-x)) : sprout::math::detail::ceil_impl(x, static_cast(static_cast(x))) ; } template< typename IntType, typename sprout::enabler_if::value>::type = sprout::enabler > inline SPROUT_CONSTEXPR double ceil(IntType x) { return sprout::math::detail::ceil(static_cast(x)); } } // namespace detail using NS_SPROUT_MATH_DETAIL::ceil; } // namespace math using sprout::math::ceil; } // namespace sprout #endif // #ifndef SPROUT_MATH_CEIL_HPP