Method: Complex#+

Defined in:
ext/enterprise_script_service/mruby/mrbgems/mruby-complex/mrblib/complex.rb

#+(rhs) ⇒ Object



22
23
24
25
26
27
28
# File 'ext/enterprise_script_service/mruby/mrbgems/mruby-complex/mrblib/complex.rb', line 22

def +(rhs)
  if rhs.is_a? Complex
    Complex(real + rhs.real, imaginary + rhs.imaginary)
  elsif rhs.is_a? Numeric
    Complex(real + rhs, imaginary)
  end
end