Standard C++ Library Reference ISO/IEC (VERSION3)

norm
template<class Ty>
Ty norm(const complex<Ty>& left);
The function returns the squared magnitude of left.
operator!=
template<class Ty>
bool operator!=(const complex<Ty>& left,
const complex<Ty>& right);
template<class Ty>
bool operator!=(const complex<Ty>& left,
const Ty& right);
template<class Ty>
bool operator!=(const Ty& left,
const complex<Ty>& right);
The operators each return true only if real(left) != real(right) ||
imag(left) != imag(right).
operator*
template<class Ty>
complex<Ty> operator*(const complex<Ty>& left,
const complex<Ty>& right);
template<class Ty>
complex<Ty> operator*(const complex<Ty>& left,
const Ty& right);
template<class Ty>
complex<Ty> operator*(const Ty& left,
const complex<Ty>& right);
The operators each convert both operands to the return type, then return the complex product of
the converted left and right.
operator+
template<class Ty>
complex<Ty> operator+(const complex<Ty>& left,
const complex<Ty>& right);
template<class Ty>