truncate(ndigits = 0) -> Integer | Float
0 から self までの整数で、自身にもっとも近い整数を返します。
1.truncate # => 1 1.truncate(2) # => 1.0 18.truncate(-1) #=> 10 (-18).truncate(-1) #=> -10
[SEE_ALSO] Numeric#truncate