Class: Numeric

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

Instance Method Summary collapse

Instance Method Details

#duplicable?Boolean

Numbers are not duplicable:

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

Returns:

  • (Boolean)


76
77
78
# File 'lib/core_ext/object/duplicable.rb', line 76

def duplicable?
  false
end