PrevUpHomeNext

esv::ceil


The heart will inject a piece of sunshine.

esv::ceil: get the ceil value of esvcpp real meric value. The result type is the same as the value type.

template <esv::real_meric real_type>
constexpr inline auto ceil(const real_type & value);

c++ Example

#include <esvcpp/math.hpp>

int main()
{
	esv::fx32 a = 3.245f;
	a = esv::ceil(a); // 4.0f;
}

PrevUpHomeNext

esv::print