Expand description
Constants for the f64
double-precision floating point type.
See also the f64
primitive type.
Mathematically significant numbers are provided in the consts
sub-module.
For the constants defined directly in this module
(as distinct from those defined in the consts
sub-module),
new code should instead use the associated constants
defined directly on the f64
type.
Modules§
- Basic mathematical constants.
Constants§
- DIGITS
Deprecation planned Approximate number of significant digits in base 10. Usef64::DIGITS
instead. - EPSILON
Deprecation planned - INFINITY
Deprecation planned Infinity (∞). Usef64::INFINITY
instead. - MANTISS
A_ DIGITS Deprecation planned Number of significant digits in base 2. Usef64::MANTISSA_DIGITS
instead. - MAX
Deprecation planned Largest finitef64
value. Usef64::MAX
instead. - MAX_
10_ EXP Deprecation planned Maximum possible power of 10 exponent. Usef64::MAX_10_EXP
instead. - MAX_EXP
Deprecation planned Maximum possible power of 2 exponent. Usef64::MAX_EXP
instead. - MIN
Deprecation planned Smallest finitef64
value. Usef64::MIN
instead. - MIN_
10_ EXP Deprecation planned Minimum possible normal power of 10 exponent. Usef64::MIN_10_EXP
instead. - MIN_EXP
Deprecation planned One greater than the minimum possible normal power of 2 exponent. Usef64::MIN_EXP
instead. - MIN_
POSITIVE Deprecation planned Smallest positive normalf64
value. Usef64::MIN_POSITIVE
instead. - NAN
Deprecation planned Not a Number (NaN). Usef64::NAN
instead. - NEG_
INFINITY Deprecation planned Negative infinity (−∞). Usef64::NEG_INFINITY
instead. - RADIX
Deprecation planned The radix or base of the internal representation off64
. Usef64::RADIX
instead.