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