1/// Round `x` to the nearest integer, breaking ties away from zero.
2#[cfg_attr(all(test, assert_no_panic), no_panic::no_panic)]
3pub fn roundf(x: f32) -> f32 {
4 super::generic::round(x)
5}
6

Provided by KDAB

Privacy Policy