| DIG |
It holds minimum number of significant decimal digits in a double-precision floating point and it defaults to 15. |
| EPSILON |
It holds difference between 1 and the smallest double-precision floating point number greater than 1 and defaults to 2.2204460492503131e-16. |
| MANT_DIG |
It holds the number of mantissa digits of base RADIX. Defaults to 53. |
| MAX |
It holds largest possible integer in a double-precision floating point number and it defaults to 1.7976931348623157e+308. |
| MAX_10_EXP |
It represent the largest positive exponent in a double-precision floating point where 10 raised to this power minus 1. Defaults to 308. |
| MAX_EXP |
It is the largest possible exponent value in a double-precision floating point which defaults to 1024. |
| MIN |
It is the smallest positive normalized number in a double-precision floating point. Defaults to 2.2250738585072014e-308. |
| MIN_10_EXP |
It is the smallest negative exponent in a double-precision floating point where 10 raised to this power minus 1. Defaults to -307. |
| MIN_EXP |
It is the smallest possible exponent value in a double-precision floating point. Defaults to -1021 |
| RADIX |
The radix of floating-point representations or in other words, it is a base of floating-point numbers. Defaults to 2 on most systems, which would represent a base-10 decimal |
| ROUND |
It represents the rounding mode for floating-point operations. The values includes are:
-1: if the mode is indeterminate
0: if rounding towards zero
1: if the rounding is nearest to representable value
2: if rounding is towards +infinite
3: if rounding is towards +infinite
|
| NaN |
It is an expression representing a value which is "not a number". |
| INFINITY |
It is an expression representing positive infinity. |