negative? -> bool
self が 0 未満の場合に true を返します。そうでない場合に false を返します。
例 Rational(1, 2).negative? # => false Rational(-1, 2).negative? # => true
Rational(1, 2).negative? # => false Rational(-1, 2).negative? # => true
[SEE_ALSO] Rational#positive?