pub fn f32_to_u64(float: f32) -> u64
Expand description
Convert the input floating point value to the output integer type.
If the input value is out of range of the output type, then the result is unspecified. Otherwise, the result is the same as the standard as
conversion.