Constant std::f64::MIN_POSITIVE1.0.0[][src]

pub const MIN_POSITIVE: f64 = f64::MIN_POSITIVE; // 2.2250738585072014E-308f64
👎 Deprecating in a future Rust version:

replaced by the MIN_POSITIVE associated constant on f64

Expand description

最小正 f64 正值。 请改用 f64::MIN_POSITIVE

Examples

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

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