real
Overloads
| Name | Description |
|---|---|
real(bool value) -> real | Get the real part of a complex number. |
real(complex value) -> real | Get the real part of a complex number. |
real(const string str) -> real | Parses a string and converts it to a real. |
real(real value) -> real | Get the real part of a complex number. |
real(integer value) -> real | Get the real part of a complex number. |
real(bool value) -> real
Get the real part of a complex number.
Parameters
- value: The number.
Returns
The real part of the number.
real(complex value) -> real
Get the real part of a complex number.
Parameters
- value: The number.
Returns
The real part of the number.
real(const string str) -> real
Parses a string and converts it to a real.
Parameters
- str: The string to convert.
real(real value) -> real
Get the real part of a complex number.
Parameters
- value: The number.
Returns
The real part of the number.
real(integer value) -> real
Get the real part of a complex number.
Parameters
- value: The number.
Returns
The real part of the number.