Constant std::f64::NEG_INFINITY

1.0.0 · source ·
pub const NEG_INFINITY: f64 = f64::NEG_INFINITY; // -Inff64
👎Deprecating in a future Rust version: replaced by the NEG_INFINITY associated constant on f64
Expand description

负无穷大 (−∞)。 请改用 f64::NEG_INFINITY

Examples

// 弃用的方式
let ninf = std::f64::NEG_INFINITY;

// 预期的方式
let ninf = f64::NEG_INFINITY;
Run