Quadruple
represents a floating-point number with 128 bits of the fractional
part of the mantissa and 32 bits of exponent.See: Description
Class | Description |
---|---|
Quadruple |
A floating-point number with a 128-bit fractional part of the mantissa and 32-bit
exponent.
|
Quadruple
represents a floating-point number with 128 bits of the fractional
part of the mantissa and 32 bits of exponent. It's capable of converting numeric values from and to other
numeric types and Strings, of performing basic arithmetic operations and computing of square root.
The class is mutable, operations like q.add(3) or q.sqrt() change the value stored by the instance,
and new values may be assigned to an instance. The class is not thread-safe.