pub trait Ceiling { type Output; // Required method fn ceiling(self) -> Self::Output; }
Takes the ceiling of a number.
This is a wrapper over the ceil functions in libm
ceil
libm