pub const MAX_EXP: i32 = f32::MAX_EXP; // 128i32👎Deprecating in a future Rust version: replaced by the <code>MAX_EXP</code> associated constant on <code>f32</code>
Expand description
Maximum possible power of 2 exponent.
Use f32::MAX_EXP instead.
Examples
// deprecated way
let max = std::f32::MAX_EXP;
// intended way
let max = f32::MAX_EXP;Run