Constant core::f32::NEG_INFINITY

1.0.0 · source · []
pub const NEG_INFINITY: f32 = f32::NEG_INFINITY; // -Inff32
👎 Deprecating in a future Rust version:

replaced by the NEG_INFINITY associated constant on f32

Expand description

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

Examples

// deprecated way
let ninf = std::f32::NEG_INFINITY;

// intended way
let ninf = f32::NEG_INFINITY;
Run