Ruby 3.4 リファレンスマニュアル
Ruby 3.4 リファレンスマニュアル
ライブラリ一覧
組み込みライブラリ
Numericクラス
to_int
instance method Numeric#to_int
to_int -> Integer
[
permalink
][
rdoc
][
edit
]
self.to_i と同じです。
例
p
(
2
+
0i
)
.
to_int
# => 2
p
Rational
(
3
)
.
to_int
# => 3