Constant std::f64::MIN

1.0.0 · source ·
pub const MIN: f64 = f64::MIN; // -1.7976931348623157E+308f64
👎Deprecating in a future Rust version: replaced by the MIN associated constant on f64
Expand description

最小的 f64 有限值。 请改用 f64::MIN

Examples

// 弃用的方式
let min = std::f64::MIN;

// 预期的方式
let min = f64::MIN;
Run