self <= other -> bool
self が other のサブセットか同じである場合に真を返します。
other
h1 = {a:1, b:2} h2 = {a:1, b:2, c:3} p h1 <= h2 # => true p h2 <= h1 # => false p h1 <= h1 # => true
[SEE_ALSO] Hash#<, Hash#>=, Hash#>