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