instance method Float#to_i

to_i -> Integer[permalink][rdoc][edit]
truncate(ndigits = 0) -> Integer | Float

小数点以下を切り捨てて値を整数に変換します。

[PARAM] ndigits:
10進数での小数点以下の有効桁数を整数で指定します。正の整数を指定した場合、Float を返します。小数点以下を、最大 n 桁にします。負の整数を指定した場合、Integer を返します。小数点位置から左に少なくとも n 個の 0 が並びます。


2.8.truncate           # => 2
(-2.8).truncate        # => -2
1.234567.truncate(2)   # => 1.23
34567.89.truncate(-2)  # => 34500

[SEE_ALSO] Numeric#round, Numeric#ceil, Numeric#floor