Class: TrueClass

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

Instance Method Summary collapse

Instance Method Details

#duplicable?Boolean

true is not duplicable:

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

Returns:

  • (Boolean)


56
57
58
# File 'lib/core_ext/object/duplicable.rb', line 56

def duplicable?
  false
end