self == other -> bool
[permalink][rdoc][edit]eql?(other) -> bool
-
自身と other が同じクラスあるいは同じモジュールの同じメソッドを表す場合に true を返します。そうでない場合に false を返します。
- [PARAM] other:
- 自身と比較したいオブジェクトを指定します。
a = String.instance_method(:size) b = String.instance_method(:size) p a == b #=> true c = Array.instance_method(:size) p a == c #=> false