makeDecimalRaw64 overloads

Synopses

Declared in <bdldfp_decimalutil.h>

Create a Decimal64 from raw significand and exponent.

static
Decimal64
makeDecimalRaw64(
    int significand,
    int exponent);

Same as the overload taking int.

static
Decimal64
makeDecimalRaw64(
    long long significand,
    int exponent);

Same as the overload taking int.

static
Decimal64
makeDecimalRaw64(
    unsigned int significand,
    int exponent);

Same as the overload taking int.

static
Decimal64
makeDecimalRaw64(
    unsigned long long significand,
    int exponent);

Return Value

Decimal64 value with the specified significand and exponent

Parameters

Name

Description

significand

coefficient of the decimal value

exponent

power of ten applied to significand

Created with MrDocs