class Numeric

Public Instance Methods

duplicable?() click to toggle source

Numbers are not duplicable:

3.duplicable? # => false
3.dup         # => TypeError: can't dup Fixnum
# File lib/wedge/utilis/duplicable.rb, line 83
def duplicable?
  false
end