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/raven/core_ext/object/duplicable.rb, line 100 def duplicable? false end