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

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

The radix or base of the internal representation of f32. Use f32::RADIX instead.

Examples

// deprecated way
let r = std::f32::RADIX;

// intended way
let r = f32::RADIX;