Module std::f641.0.0[][src]

Expand description

Constants specific to 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

Deprecation planned

Approximate number of significant digits in base 10. Use f64::DIGITS instead.

Deprecation planned

Machine epsilon value for f64. Use f64::EPSILON instead.

Deprecation planned

Infinity (∞). Use f64::INFINITY instead.

Deprecation planned

Number of significant digits in base 2. Use f64::MANTISSA_DIGITS instead.

Deprecation planned

Largest finite f64 value. Use f64::MAX instead.

Deprecation planned

Maximum possible power of 10 exponent. Use f64::MAX_10_EXP instead.

Deprecation planned

Maximum possible power of 2 exponent. Use f64::MAX_EXP instead.

Deprecation planned

Smallest finite f64 value. Use f64::MIN instead.

Deprecation planned

Minimum possible normal power of 10 exponent. Use f64::MIN_10_EXP instead.

Deprecation planned

One greater than the minimum possible normal power of 2 exponent. Use f64::MIN_EXP instead.

Deprecation planned

Smallest positive normal f64 value. Use f64::MIN_POSITIVE instead.

Deprecation planned

Not a Number (NaN). Use f64::NAN instead.

Deprecation planned

Negative infinity (−∞). Use f64::NEG_INFINITY instead.

Deprecation planned

The radix or base of the internal representation of f64. Use f64::RADIX instead.