Class: Complex
- Defined in:
- lib/active_support/core_ext/numeric/inquiry.rb,
lib/active_support/core_ext/object/duplicable.rb
Instance Method Summary collapse
-
#duplicable? ⇒ Boolean
Complexes are not duplicable:.
Instance Method Details
#duplicable? ⇒ Boolean
Complexes are not duplicable:
Complex(1).duplicable? # => false Complex(1).dup # => TypeError: can’t copy Complex
131 132 133 |
# File 'lib/active_support/core_ext/object/duplicable.rb', line 131 def duplicable? false end |