3件ヒット
[1-3件を表示]
(0.019秒)
ライブラリ
- ビルトイン (3)
検索結果
-
Module
# const _ defined?(name) -> bool (23001) -
モジュールに name で指定される名前の定数が定義されている時真 を返します。
...)
@param name String, Symbol で指定される定数名。
module Kernel
FOO = 1
end
# Object は include したモジュールの定数に対しても
# true を返す
p Object.const_defined?(:FOO) # => true
module Bar
BAR = 1
end
class Object
include Bar
end... -
Module
# const _ defined?(name , inherit = true) -> bool (23001) -
モジュールに name で指定される名前の定数が定義されている時真 を返します。
...定義された定数は対象にはなりません。
module Kernel
FOO = 1
end
# Object は include したモジュールの定数に対しても
# true を返す
p Object.const_defined?(:FOO) # => true
module Bar
BAR = 1
end
class Object
include Bar
end...
