operator / method

Complex operator /(
  1. Complex other
)

Divides two complex numbers.

Implementation

Complex operator /(Complex other) => this * other.reciprocal();