Methods
Instance Public methods
duplicable?()
Complexes are not duplicable:
Complex(1).duplicable? # => false
Complex(1).dup # => TypeError: can't copy Complex
📝 Source code
# File activesupport/lib/active_support/core_ext/object/duplicable.rb, line 137
def duplicable?
false
end
🔎 See on GitHub