Overload List
| # | Signature | Description |
|---|---|---|
| 1 | class operator Add(const Left: TSCplx; const Right: TSCplx): TSCplx; | Add operator for TSCplx types. |
| 2 | class operator Add(const Left: TSCplx; const Right: Single): TSCplx; | Add operator for mixed TSCplx and real types. |
| 3 | class operator Add(const Left: Single; const Right: TSCplx): TSCplx; | Add operator for mixed TSCplx and real types. |
Overload 1: class operator Add(const Left: TSCplx; const Right: TSCplx): TSCplx;
Add operator for TSCplx types.
Returns: TSCplx
Overload 2: class operator Add(const Left: TSCplx; const Right: Single): TSCplx;
Add operator for mixed TSCplx and real types.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | TSCplx | scalar |
| 2 | Right | Single | scalar |
Returns: TSCplx
Overload 3: class operator Add(const Left: Single; const Right: TSCplx): TSCplx;
Add operator for mixed TSCplx and real types.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | Single | scalar |
| 2 | Right | TSCplx | scalar |
Returns: TSCplx