pub fn f64_to_u32(float: f64) -> u32
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.