method
class_variable_defined?
v1_9_2_180 -
Show latest stable
- Class:
Module
class_variable_defined?(p1)public
Returns true if the given class variable is defined in obj.
class Fred @@foo = 99 end Fred.class_variable_defined?(:@@foo) #=> true Fred.class_variable_defined?(:@@bar) #=> false