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