108件ヒット
[101-108件を表示]
(0.143秒)
別のキーワード
ライブラリ
- ビルトイン (108)
キーワード
- == (12)
- arity (12)
-
bind
_ call (12) - clone (12)
- eql? (12)
- name (12)
-
original
_ name (12) - owner (12)
-
source
_ location (12)
検索結果
-
UnboundMethod
# eql?(other) -> bool (3056.0) -
自身と other が同じクラスあるいは同じモジュールの同じメソッドを表す場合に true を返します。そうでない場合に false を返します。
...場合に false を返します。
@param other 自身と比較したいオブジェクトを指定します。
//emlist[例][ruby]{
a = String.instance_method(:size)
b = String.instance_method(:size)
p a == b #=> true
c = Array.instance_method(:size)
p a == c......#=> false
//}...