instance method Rational#-

self - other -> Rational | Float[permalink][rdoc][edit]

差を計算します。

[PARAM] other:
自身から引く数

other に Float を指定した場合は、計算結果を Float で返します。



r = Rational(3, 4)
r - 1                # => (-1/4)
r - 0.5              # => 0.25