mod.constants(inherit=true) รข array
Instance Public methods
Returns an array of the names of the constants accessible in mod.
This includes the names of constants in any included modules (example at
start of section), unless the inherit parameter is set to
false
.
IO.constants.include?(:SYNC) #=> true IO.constants(false).include?(:SYNC) #=> false
Also see Module::const_defined?
.
Please login to continue.