11件ヒット
[1-11件を表示]
(0.107秒)
ライブラリ
- ビルトイン (11)
検索結果
-
Module
# <=>(other) -> Integer | nil (27349.0) -
self と other の継承関係を比較します。
...elf と other の継承関係を比較します。
self と other を比較して、
self が other の子孫であるとき -1、
同一のクラス/モジュールのとき 0、
self が other の先祖であるとき 1
を返します。
継承関係にないクラス同士の比較では
nil......nil を返します。
@param other 比較対象のクラスやモジュール
//emlist[例][ruby]{
module Foo
end
class Bar
include Foo
end
class Baz < Bar
end
class Qux
end
p Bar <=> Foo # => -1
p Baz <=> Bar # => -1
p Baz <=> Foo # => -1
p Baz <=> Qux # => nil
p Qux <=> Baz......# => nil
p Baz <=> Object.new # => nil
//}...