System.SysUtils.TDoubleHelper.BuildUp
Delphi
procedure BuildUp(const SignFlag: Boolean; const Mantissa: UInt64; const Exponent: Integer);
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
| procedure | public | System.SysUtils.pas | System.SysUtils | TDoubleHelper |
Description
Builds a TDoubleHelper variable with a given sign, mantissa, and exponent.
The SignFlag parameter represents the flag for the sign of the number. The flag is True for a negative number and False for a positive number.
The Mantissa parameter represents the digits of the number. Mantissa is a UInt64 value.
The Exponent parameter represents the exponent part of the number. Exponent is a Int value.