Expand description
A 128-bit decimal floating point type (IEEE Standard 754-2008 compliant).
Structs§
- Status
Flags - Status flags.
- d128
- The 128-bit decimal type.
Enums§
- Class
Types - A classification of decimal floating point numbers.
- Rounding
Mode - Rounding mode.
Constants§
- DEFAULT_
ROUNDING_ MODE - EPSILON
- The difference between 1 and the least value greater than 1 that is representable in the given floating point type (1E-33).
- INFINITY
- Infinity.
- MANTISSA_
DIGITS - The number of digits in the coefficient.
- MAX
- Largest finite value (9.999999999999999999999999999999999E6144).
- MAX_EXP
- The maximum exponent.
- MIN
- Smallest finite value (1E-6143).
- MINUS_
ONE - The number minus one (-1).
- MIN_EXP
- The minimum exponent.
- NAN
- Not a Number (NaN).
- NEGATIVE_
INFINITY - Negative Infinity.
- NEG_NAN
- Negative Not a Number (Nan).
- NEG_
SNAN - Negative signaling Not a Number (Nan).
- ONE
- The number one (1).
- RADIX
- The radix or base of the internal representation of
d128. - SNAN
- Signaling Not a Number (Nan).
- ZERO
- The number zero (0).