pub fn fast_inline_round_f32(x: f32) -> i32Expand description
Returns the given f32 as rounded to the nearest integer. Same output as f32::round().
This follows the as rules for saturated casting of f32 to i32. See more in the Rust
Reference.