Class: Numeric
Instance Method Summary collapse
-
#duplicable? ⇒ Boolean
Numbers are not duplicable:.
Instance Method Details
#duplicable? ⇒ Boolean
Numbers are not duplicable:
3.duplicable? # => false 3.dup # => TypeError: can't dup Fixnum
74 75 76 |
# File 'lib/chewy/backports/duplicable.rb', line 74 def duplicable? false end |