Ruby 2.0.0 リファレンスマニュアル > ライブラリ一覧 > 組み込みライブラリ > Integerクラス > to_r

instance method Integer#to_r

to_r -> Rational[permalink][rdoc]

自身を Rational に変換します。

例:

1.to_r        # => (1/1)
(1<<64).to_r  # => (18446744073709551616/1)