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