instance method
duplicable?
Ruby on Rails 4.1.16
Since v3.1.12 Last seen in v5.2.8.1Signature
duplicable?()
Numbers are not duplicable:
3.duplicable? # => false 3.dup # => TypeError: can't dup Fixnum
Source
# File activesupport/lib/active_support/core_ext/object/duplicable.rb, line 74
def duplicable?
false
end
Defined in activesupport/lib/active_support/core_ext/object/duplicable.rb line 74
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in Numeric