最速Rubyリファレンスマニュアル検索!
すべて(4)
2.3.0(1)
2.4.0(1)
2.5.0(1)
2.6.0(1)
4件ヒット
[1-4件を表示]
(0.010秒)
トップページ
>
クラス:
Hash
>
:Hash#>=
別のキーワード
_builtin hash
hash []
matrix hash
dbm to_hash
_builtin to_hash
ライブラリ
ビルトイン
(4)
検索結果
先頭1件
Hash
#
>=(other) -> bool
Hash
#
>=(other) -> bool
(23001.0)
2.3.0
2.4.0
2.5.0
2.6.0
インスタンスメソッド
other が self のサブセットか同じである場合に真を返します。
...
self のサブセットか同じである場合に真を返します。
@param other 自身と比較したい
Hash
オブジェクトを指定します。
h1 = {a:1, b:2}
h2 = {a:1, b:2, c:3}
h1 >= h2 # => false
h2 >= h1 # => true
h1 >= h1 # => true
@see
Hash
#<=,
Hash
#<,
Hash
#>
...
Hash#<
Hash#<=
Hash#>