Constant MAX_EXP

Deprecated since 1.99.0: replaced by the `MAX_EXP` associated constant on `f32`
pub const MAX_EXP: i32 = 128i32;

Maximum possible power of 2 exponent. Use f32::MAX_EXP instead.

Examples

// deprecated way
# #[allow(deprecated)]
let max = std::f32::MAX_EXP;

// intended way
let max = f32::MAX_EXP;