Ruby 2.2.0 リファレンスマニュアル > ライブラリ一覧 > 組み込みライブラリ > UnboundMethodクラス > hash
hash -> Integer
自身のハッシュ値を返します。
a = method(:==).unbind b = method(:eql?).unbind p a.eql? b # => true p a.hash == b.hash # => true p [a, b].uniq.size # => 1