makeDecimalRaw64 overloads
Declared in <bdldfp_decimalutil.h>
Create a Decimal64 from raw significand and exponent.
static
Decimal64
makeDecimalRaw64(
int significand,
int exponent);
» more...
Same as the overload taking int.
static
Decimal64
makeDecimalRaw64(
long long significand,
int exponent);
» more...
Same as the overload taking int.
static
Decimal64
makeDecimalRaw64(
unsigned int significand,
int exponent);
» more...
Same as the overload taking int.
static
Decimal64
makeDecimalRaw64(
unsigned long long significand,
int exponent);
» more...
Decimal64 value with the specified significand and exponent
| Name | Description |
|---|---|
| significand | coefficient of the decimal value |
| exponent | power of ten applied to significand |