math.trunc
Available inall subroutines.
Truncate x
to an integer value less than or equal in absolute value.
In other words, round x
towards zero. Negative values will be rounded up
towards zero and positive values will be rounded down towards zero.
For example, 2.2, 2.5, and 2.7 all truncate to 2.0.
This is equivalent to formatting the number to base ten and removing all digits after the decimal point.
Return Value
If x
is math.NAN
, a NaN will be returned.
If x
is integral, ±0, x
itself is returned.
If x
is math.POS_INFINITY
or
math.NEG_INFINITY
, an infinity of
the same sign is returned.
Otherwise, the rounded value of x
is returned.