るりまサーチ

最速Rubyリファレンスマニュアル検索!
11件ヒット [1-11件を表示] (0.012秒)
トップページ > クエリ:unbind[x] > クエリ:UnboundMethod[x] > クラス:UnboundMethod[x]

別のキーワード

  1. method unbind
  2. _builtin unbind
  3. unbind unboundmethod
  4. unbind method
  5. unbind _builtin

ライブラリ

検索結果

UnboundMethod#hash -> Integer (21013.0)

自身のハッシュ値を返します。

...自身のハッシュ値を返します。


//emlist[例][ruby]{
a = method(:==).unbind
b = method(:eql?).unbind
p a.eql? b # => true
p a.hash == b.hash # => true
p [a, b].uniq.size # => 1
//}...