Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TSCplx operator-(const TSCplx &a, const TSCplx &b); | Subtract operator for TSCplx types. |
| 2 | TSCplx operator-(const TSCplx &a, float b); | Subtract operator for mixed TSCplx and real types. |
| 3 | TSCplx operator-(float a, const TSCplx &b); | Subtract operator for mixed TSCplx and real types. |
| 4 | TSCplx operator-(const TSCplx &a); | Unary negate operator for TSCplx types. |
Overload 1: TSCplx operator-(const TSCplx &a, const TSCplx &b);
Subtract operator for TSCplx types.
Declared in Dew::Math · Dew.Math/Math387.h · Cross-compiler
Overload 2: TSCplx operator-(const TSCplx &a, float b);
Subtract operator for mixed TSCplx and real types.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | a | const TSCplx & | |
| 2 | b | float |
Declared in Dew::Math · Dew.Math/Math387.h · Cross-compiler
Overload 3: TSCplx operator-(float a, const TSCplx &b);
Subtract operator for mixed TSCplx and real types.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | a | float | |
| 2 | b | const TSCplx & |
Declared in Dew::Math · Dew.Math/Math387.h · Cross-compiler
Overload 4: TSCplx operator-(const TSCplx &a);
Unary negate operator for TSCplx types.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | a | const TSCplx & |
Declared in Dew::Math · Dew.Math/Math387.h · Cross-compiler