Overload List
| # | Signature | Description |
|---|---|---|
| 1 | class operator Explicit(const AValue: TCplx): Double; | Explicit conversion of TCplx to Double - imaginary part is ignored. |
| 2 | class operator Explicit(const AValue: TCplx): Integer; | Explicit conversion of TCplx to Int32 - imaginary part is ignored. |
| 3 | class operator Explicit(const AValue: TCplx): Int64; | Explicit conversion of TCplx to Int64 - imaginary part is ignored. |
| 4 | class operator Explicit(const AValue: Double): TCplx; | Explicit conversion of double to TCplx - imaginary part is set to 0. |
| 5 | class operator Explicit(const AValue: Integer): TCplx; | Explicit conversion of integer to TCplx - imaginary part is set to 0. |
| 6 | class operator Explicit(const AValue: Int64): TCplx; | Explicit conversion of Int64 to TCplx - imaginary part is set to 0. |
| 7 | class operator Explicit(const AValue: Single): TCplx; | Explicit conversion of single to TCplx - imaginary part is set to 0. |
Overload 1: class operator Explicit(const AValue: TCplx): Double;
Explicit conversion of TCplx to Double - imaginary part is ignored.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AValue | TCplx | scalar |
Returns: Double
Overload 2: class operator Explicit(const AValue: TCplx): Integer;
Explicit conversion of TCplx to Int32 - imaginary part is ignored.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AValue | TCplx | scalar |
Returns: Int32
Overload 3: class operator Explicit(const AValue: TCplx): Int64;
Explicit conversion of TCplx to Int64 - imaginary part is ignored.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AValue | TCplx | scalar |
Returns: Int64
Overload 4: class operator Explicit(const AValue: Double): TCplx;
Explicit conversion of double to TCplx - imaginary part is set to 0.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AValue | Double | scalar |
Returns: TCplx (complex)
Overload 5: class operator Explicit(const AValue: Integer): TCplx;
Explicit conversion of integer to TCplx - imaginary part is set to 0.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AValue | Integer |
Returns: TCplx (complex)
Overload 6: class operator Explicit(const AValue: Int64): TCplx;
Explicit conversion of Int64 to TCplx - imaginary part is set to 0.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AValue | Int64 |
Returns: TCplx (complex)
Overload 7: class operator Explicit(const AValue: Single): TCplx;
Explicit conversion of single to TCplx - imaginary part is set to 0.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AValue | Single | scalar |
Returns: TCplx (complex)