| 94 | } |
| 95 | |
| 96 | Complex Complex::operator*(const Complex &other) const |
| 97 | { |
| 98 | return Complex(r*other.r - i*other.i, r*other.i + i*other.r); |
| 99 | } |
| 100 | |
| 101 | Complex Complex::operator/(const Complex &other) const |
| 102 | { |
nothing calls this directly
no outgoing calls
no test coverage detected