Ruby 1.8.7 リファレンスマニュアル > ライブラリ一覧 > 組み込みライブラリ > NilClassクラス
クラスの継承リスト: NilClass < Object < Kernel
nil のクラス。 nil は NilClass クラスの唯一のインスタンスです。 nil は false オブジェクトとともに偽を表し、 その他の全てのオブジェクトは真です。
self & other -> false
[permalink][rdoc]常に false を返します。
self ^ other -> bool
[permalink][rdoc]other が真なら true を, 偽なら false を返します。
nil? -> bool
[permalink][rdoc]常に true を返します。
to_a -> Array
[permalink][rdoc]空配列 [] を返します。
to_f -> Float
[permalink][rdoc]0.0 を返します。
to_i -> Fixnum
[permalink][rdoc]0 を返します。
to_s -> String
[permalink][rdoc]空文字列 "" を返します。
self | other -> bool
[permalink][rdoc]other が真なら true を, 偽なら false を返します。