def trunc(number: Real) -> int: """ Truncates x to the nearest Integral toward 0. """ return _math.trunc(number) # Operations on collections of numbers