class Numeric
Public Instance Methods
duplicable?()
click to toggle source
Numbers are not duplicable:
3.duplicable? # => false 3.dup # => TypeError: can't dup Integer
# File lib/rack/cargo/core_ext/duplicable.rb, line 101 def duplicable? false end