self * other -> Float[permalink][rdoc][edit]-
selfにotherを掛けた値(=積)を返します。Floatオブジェクトを左項とする算術演算子*はこのメソッドの呼び出しになります。- [PARAM]
other: -
selfに対する乗数
# 積 p 2.5 * 3 # => 7.5 - [PARAM]
self * other -> Float[permalink][rdoc][edit]
self に other を掛けた値(=積)を返します。
Float オブジェクトを左項とする算術演算子 * はこのメソッドの呼び出しになります。
other:self に対する乗数
# 積
p 2.5 * 3 # => 7.5