Constant INFINITY

const INFINITY: f64 = +Inf_f64

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

Examples

// deprecated way
# #[allow(deprecated, deprecated_in_future)]
let inf = std::f64::INFINITY;

// intended way
let inf = f64::INFINITY;