= private = protected
coerce(other)
Attempts to coerce other to a Complex number.
# File lib/complex.rb, line 334 def coerce(other) if Complex.generic?(other) return Complex.new!(other), self else super end end