Class: NilClass

Inherits:
Object show all
Defined in:
lib/chewy/backports/duplicable.rb

Instance Method Summary collapse

Instance Method Details

#duplicable?Boolean

+nil+ is not duplicable:

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

Returns:

  • (Boolean)


34
35
36
# File 'lib/chewy/backports/duplicable.rb', line 34

def duplicable?
  false
end