CComplex.Operator LEToperator
Assigns a value to a **CComplex** variable.
No implementation located. This member is documented, but the source scan found no matching declaration. It is likely declared in a header this scan does not resolve, or provided by a macro.
Syntax
OPERATOR LET (BYREF z AS CComplex)
OPERATOR LET (BYREF z AS _complex)
Parameters
| Name | Description | |
|---|---|---|
z | An instance of the CComplex class or a \_complex structure. |
Description
Assigns a value to a CComplex variable.
An instance of the CComplex class.
A \_complex structure.
Examples
DIM cpx AS CComplex = TYPE(3, 4) DIM cpx2 AS CComplex = cpx
DIM cpx AS CComplex cpx = CComplex(3, 4)
DIM cpx AS CComplex = TYPE<_complex>(3, 4)
Reference
- Include file
CComplex.inc - Documented in Numeric Datatypes/CComplex Class.md
- Topic: CComplex Class