System.SysUtils.TSingleHelper.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 | TSingleHelper |
Description
Builds a TSingleHelper variable with a given sign, mantissa, and exponent.
The SignFlag
parameter represents the flag for the sign of the number; it 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 an Int value.