self == other -> bool
eql?(other) -> bool
自身と other が同じインスタンスの同じメソッドを表す場合に true を返します。そうでない場合に false を返します。
s = "bar" a = s.method(:size) b = s.method(:size) p a == b #=> true