makeDecimalRaw64 overloads
Declared in <bdldfp_decimalutil.h>
Create a Decimal64 object representing a decimal floating point number consisting of the specified significand and exponent, with the sign given by the significand (if signed). The behavior is undefined unless -9,999,999,999,999,999 <= significand <= 9,999,999,999,999,999 and -398 <= exponent <= 369.
static
Decimal64
makeDecimalRaw64(
int significand,
int exponent);
» more...
Set the value of this object to be a "DecimalRaw64" value. Optionally specify the value of the "DecimalRaw64".
static
Decimal64
makeDecimalRaw64(
long long significand,
int exponent);
» more...
Set the value of this object to be a "DecimalRaw64" value. Optionally specify the value of the "DecimalRaw64".
static
Decimal64
makeDecimalRaw64(
unsigned int significand,
int exponent);
» more...
Set the value of this object to be a "DecimalRaw64" value. Optionally specify the value of the "DecimalRaw64".
static
Decimal64
makeDecimalRaw64(
unsigned long long significand,
int exponent);
» more...