pub type fsize = f64;Expand description
Platform-dependent floating-point type, matching the width of isize/usize.
On 64-bit platforms this is f64; on 32-bit platforms it is f32.
This provides a consistent numeric tower where the float type has the same
bit-width as the native integer types.