Constant core::f32::INFINITY

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

replaced by the INFINITY associated constant on f32

Expand description

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

Examples

// deprecated way
let inf = std::f32::INFINITY;

// intended way
let inf = f32::INFINITY;
Run