Class: FalseClass

Inherits:
Object show all
Defined in:
lib/core_ext/object/duplicable.rb

Instance Method Summary collapse

Instance Method Details

#duplicable?Boolean

false is not duplicable:

false.duplicable? # => false
false.dup         # => TypeError: can't dup FalseClass

Returns:

  • (Boolean)


46
47
48
# File 'lib/core_ext/object/duplicable.rb', line 46

def duplicable?
  false
end