TCplx::operator== Operator

Overload List

#SignatureDescription
1bool operator==(const TCplx &Left, const TCplx &Right);Equal operator for TCplx types.
2bool operator==(const TCplx &Left, double Right);Equal operator for mixed TCplx and real types.
3bool operator==(double Left, const TCplx &Right);Equal operator for mixed TCplx and real types.
4bool operator==(const Vector &Left, const TCplx &Right);Returns true, if all elements of Left are equal to Right.
5bool operator==(const TCplx &Left, const Vector &Right);Returns true, if all elements of Right are equal to Left.
6bool operator==(const Matrix &Left, const TCplx &Right);Returns true, if all elements of Left are equal to Right.
7bool operator==(const TCplx &Left, const Matrix &Right);Returns true, if Left is equal to all elements in Right.

Overload 1: bool operator==(const TCplx &Left, const TCplx &Right);

Equal operator for TCplx types.

#NameTypeDescription
1Leftconst TCplx &
2Rightconst TCplx &
Declared in Dew::Math · Dew.Math/Math387.h · Cross-compiler

Overload 2: bool operator==(const TCplx &Left, double Right);

Equal operator for mixed TCplx and real types.

#NameTypeDescription
1Leftconst TCplx &
2Rightdouble
Declared in Dew::Math · Dew.Math/Math387.h · Cross-compiler

Overload 3: bool operator==(double Left, const TCplx &Right);

Equal operator for mixed TCplx and real types.

#NameTypeDescription
1Leftdouble
2Rightconst TCplx &
Declared in Dew::Math · Dew.Math/Math387.h · Cross-compiler

Overload 4: bool operator==(const Vector &Left, const TCplx &Right);

Returns true, if all elements of Left are equal to Right.

#NameTypeDescription
1Leftconst Vector &
2Rightconst TCplx &
Declared in Dew::Math · Dew.Math/MtxExpr.h · Cross-compiler

Overload 5: bool operator==(const TCplx &Left, const Vector &Right);

Returns true, if all elements of Right are equal to Left.

#NameTypeDescription
1Leftconst TCplx &
2Rightconst Vector &
Declared in Dew::Math · Dew.Math/MtxExpr.h · Cross-compiler

Overload 6: bool operator==(const Matrix &Left, const TCplx &Right);

Returns true, if all elements of Left are equal to Right.

#NameTypeDescription
1Leftconst Matrix &
2Rightconst TCplx &
Declared in Dew::Math · Dew.Math/MtxExpr.h · Cross-compiler

Overload 7: bool operator==(const TCplx &Left, const Matrix &Right);

Returns true, if Left is equal to all elements in Right.

#NameTypeDescription
1Leftconst TCplx &
2Rightconst Matrix &
Declared in Dew::Math · Dew.Math/MtxExpr.h · Cross-compiler