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 round(x: f64) -> f64 {
4 super::generic::round(x)
5}
6