最速Rubyリファレンスマニュアル検索!
すべて(3)
1.8.7(1)
1.9.2(1)
1.9.3(1)
3件ヒット
[1-3件を表示]
(0.005秒)
トップページ
>
クラス:
Method
>
:===
関連するキーワード
_
builtin
_
builtin
date
rinda
/
rinda
pathname
ライブラリ
ビルトイン
(3)
検索結果
先頭1件
Method
#
===(other) -> bool
Method
#
===(other) -> bool
(15101)
1.8.7
1.9.2
1.9.3
インスタンスメソッド
自身と other が同じインスタンスの同じメソッドを表す場合に true を返します。そうでない場合に false を返します。
...
ッドを表す場合に
true を返します。そうでない場合に false を返します。
@param other 自身と比較したいオブジェクトを指定します。
s = "bar"
a = s.
method
(:size)
b = s.
method
(:size)
p a == b #=> true
@see
Method
#eql?
...
Method#eql?