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