Function trunc [src]
Rounds the given floating point number to an integer, towards zero.
Uses a dedicated hardware instruction when available.
This is the same as calling the builtin @trunc
Prototype
pub inline fn trunc(value: anytype) @TypeOf(value)
Source
pub inline fn trunc(value: anytype) @TypeOf(value) {
return @trunc(value);
}