Constant tract_hir::internal::tract_downcast_rs::__std::f32::RADIX1.0.0[][src]

pub const RADIX: u32 = f32::RADIX; // 0_x00_000_002u32
👎 Deprecating in a future Rust version:

replaced by the RADIX associated constant on f32

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;