Constant core::f32::MIN

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

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

Examples

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

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