1.0.0[][src]Constant no_std_compat::f32::MAX

pub const MAX: f32 = f32::MAX; // 3.40282347E+38f32

Largest finite f32 value. Use f32::MAX instead.

Examples

// deprecated way
let max = std::f32::MAX;

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