Class: TrueClass

Inherits:
Object show all
Defined in:
lib/chewy/backports/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)


54
55
56
# File 'lib/chewy/backports/duplicable.rb', line 54

def duplicable?
  false
end