るりまサーチ

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

別のキーワード

  1. _builtin uniq
  2. array uniq
  3. array uniq!
  4. _builtin uniq!
  5. enumerable uniq

ライブラリ

検索結果

Method#hash -> Integer (7.0)

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

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


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