3#ifndef pRC_CORE_VALUE_FUNCTIONS_CEIL_H
4#define pRC_CORE_VALUE_FUNCTIONS_CEIL_H
13 template<
class T, If<IsFloat<T>> = 0>
14 static inline constexpr auto ceil(
T const a)
16 return Float(std::ceil(a()));
19 template<
class T, If<IsInteger<T>> = 0>
20 static inline constexpr auto ceil(
T const a)
Definition cholesky.hpp:18
Float(Float< 16 >::Fundamental const) -> Float< 16 >
static constexpr auto ceil(X &&a)
Definition ceil.hpp:14