Constant NEG_INFINITY

Deprecated since 1.99.0: replaced by the `NEG_INFINITY` associated constant on `f64`
pub const NEG_INFINITY: f64 = -Inf_f64;

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

Examples

// deprecated way
# #[allow(deprecated)]
let ninf = std::f64::NEG_INFINITY;

// intended way
let ninf = f64::NEG_INFINITY;