equal?(other) -> bool
指定された other が self 自身である場合のみ真を返します。
p({}.equal?({})) #=> false a = {} p a.equal?(a) #=> true
[SEE_ALSO] Hash#==