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