るりまサーチ

最速Rubyリファレンスマニュアル検索!
11件ヒット [1-11件を表示] (0.009秒)

別のキーワード

  1. _builtin <=>
  2. date <=>
  3. ipaddr <=>
  4. openssl <=>

ライブラリ

検索結果

Object#<=>(other) -> 0 | nil (18114.0)

self === other である場合に 0 を返します。そうでない場合には nil を返します。

...self === other である場合に 0 を返します。そうでない場合には nil を返します。

//emlist[例][ruby]{
a = Object.new
b = Object.new
a <=> a # => 0
a <=> b # => nil
//}

@see Object#===...