Ruby 2.3.0 リファレンスマニュアル > ライブラリ一覧 > 組み込みライブラリ > Hashクラス > compare_by_identity?

instance method Hash#compare_by_identity?

compare_by_identity? -> bool[permalink][rdoc]

ハッシュがキーの一致判定をオブジェクトの同一性を用いて行っているならば真を返します。

h1 = {}
p h1.compare_by_identity? #=> false

h1.compare_by_identity

p h1.compare_by_identity? #=> true

[SEE_ALSO] Hash#compare_by_identity