Function ceil [src]
Returns the smallest integral value not less than the given floating point number.
Uses a dedicated hardware instruction when available.
This is the same as calling the builtin @ceil
Prototype
pub inline fn ceil(value: anytype) @TypeOf(value)
Source
pub inline fn ceil(value: anytype) @TypeOf(value) {
return @ceil(value);
}