Constant kvarn::prelude::utils::prelude::compact_str::core::f32::MIN_POSITIVE

1.0.0 · source ·
pub const MIN_POSITIVE: f32 = f32::MIN_POSITIVE; // 1.17549435E-38f32
👎Deprecating in a future Rust version: replaced by the <code>MIN_POSITIVE</code> associated constant on <code>f32</code>
Available on non-crate feature miri-test-libstd only.
Expand description

Smallest positive normal f32 value. Use f32::MIN_POSITIVE instead.

Examples

// deprecated way
let min = std::f32::MIN_POSITIVE;

// intended way
let min = f32::MIN_POSITIVE;