System.SysUtils.TExtendedHelper.BuildUp

From RAD Studio API Documentation
Jump to: navigation, search

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 TExtendedHelper

Description

Builds a TExtendedHelper 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 an UInt64 value.

The Exponent parameter represents the exponent part of the number. Exponent is an Int value.

See Also