Ruby 4.1 リファレンスマニュアル

instance method Hash#<

self < other -> bool[permalink][rdoc][edit]

self が other のサブセットである場合に真を返します。

[PARAM] other:
自身と比較したい Hash オブジェクトを指定します。
h1 = {a:1, b:2}
h2 = {a:1, b:2, c:3}
p h1 < h2  # => true
p h2 < h1  # => false
p h1 < h1  # => false

[SEE_ALSO] Hash#<=, Hash#>=, Hash#>