pub trait Ceiling {
    type Output;

    fn ceiling(self) -> Self::Output;
}
Expand description

Takes the ceiling of a number.

Required Associated Types

Required Methods

Implementations on Foreign Types

This is a wrapper over the ceil functions in the standard library, for example this one.

This is a wrapper over the ceil functions in the standard library, for example this one.

Implementors