self > other -> bool
[permalink][rdoc][edit]-
比較演算子。数値として大きいか判定します。
- [PARAM] other:
- 比較対象の数値
- [RETURN]
- self よりも other の方が小さい場合 true を返します。そうでなければ false を返します。
3.14 > 3.1415 # => false 3.14 >= 3.1415 # => false
self > other -> bool
[permalink][rdoc][edit]比較演算子。数値として大きいか判定します。
3.14 > 3.1415 # => false
3.14 >= 3.1415 # => false