class Complex
Public Instance Methods
duplicable?()
click to toggle source
Complexes are not duplicable:
Complex(1).duplicable? # => false Complex(1).dup # => TypeError: can't copy Complex
# File lib/rack/cargo/core_ext/duplicable.rb, line 136 def duplicable? false end