1/// Calculate the remainder of `x / y`, the precise result of `x - trunc(x / y) * y`.
2#[cfg_attr(all(test, assert_no_panic), no_panic::no_panic)]
3pub fn fmodf(x: f32, y: f32) -> f32 {
4 super::generic::fmod(x, y)
5}
6