Constant kvarn::prelude::utils::prelude::compact_str::core::f64::MIN

1.0.0 · source ·
pub const MIN: f64 = f64::MIN; // -1.7976931348623157E+308f64
👎Deprecating in a future Rust version: replaced by the <code>MIN</code> associated constant on <code>f64</code>
Available on non-crate feature miri-test-libstd only.
Expand description

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

Examples

// deprecated way
let min = std::f64::MIN;

// intended way
let min = f64::MIN;