doubleWidth top-level constant

int const doubleWidth

The number of binary digits used to represent the binary number for a double precision floating point value. i.e. there are this many digits used to represent the actual number, where in a number as: 0.134556 * 10^5 the digits are 0.134556 and the exponent is 5.

Implementation

const int doubleWidth = 53;