makeDecimal64 overloads
Synopses
Declared in <bdldfp_decimalutil.h>
Return a Decimal64 with the specified significand and exponent.
static
Decimal64
makeDecimal64(
int significand,
int exponent);
Same as the overload taking int.
static
Decimal64
makeDecimal64(
long long significand,
int exponent);
Same as the overload taking int.
static
Decimal64
makeDecimal64(
unsigned int significand,
int exponent);
Same as the overload taking int.
static
Decimal64
makeDecimal64(
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 |
Created with MrDocs