On this page
Constant std::f32::MIN
pub const MIN: f32 = f32::MIN; // -3.40282347E+38f32
👎Deprecating in a future Rust version: replaced by the
MIN
associated constant on f32
Smallest finite f32
value. Use f32::MIN
instead.
Examples
// deprecated way
let min = std::f32::MIN;
// intended way
let min = f32::MIN;
© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/f32/constant.MIN.html