self / other -> Float[permalink][rdoc][edit]-
selfをotherで割った値(=商)を返します。Floatオブジェクトを左項とする算術演算子/はこのメソッドの呼び出しになります。- [PARAM]
other: -
selfに対する除数
# 商 p 1.3 / 2.4 # => 0.541666666666667 p 1.0 / 0 # => Infinity - [PARAM]
self / other -> Float[permalink][rdoc][edit]
self を other で割った値(=商)を返します。
Float オブジェクトを左項とする算術演算子 / はこのメソッドの呼び出しになります。
other:self に対する除数
# 商
p 1.3 / 2.4 # => 0.541666666666667
p 1.0 / 0 # => Infinity