Overload List
| # | Signature | Description |
|---|---|---|
| 1 | bool operator==(const TCplx &Left, const TCplx &Right); | Equal operator for TCplx types. |
| 2 | bool operator==(const TCplx &Left, double Right); | Equal operator for mixed TCplx and real types. |
| 3 | bool operator==(double Left, const TCplx &Right); | Equal operator for mixed TCplx and real types. |
| 4 | bool operator==(const Vector &Left, const TCplx &Right); | Returns true, if all elements of Left are equal to Right. |
| 5 | bool operator==(const TCplx &Left, const Vector &Right); | Returns true, if all elements of Right are equal to Left. |
| 6 | bool operator==(const Matrix &Left, const TCplx &Right); | Returns true, if all elements of Left are equal to Right. |
| 7 | bool 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.
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.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | const TCplx & | |
| 2 | Right | double |
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.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | double | |
| 2 | Right | const 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.
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.
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.
Declared in Dew::Math · Dew.Math/MtxExpr.h · Cross-compiler