1 #[cfg_attr(all(test, assert_no_panic), no_panic::no_panic)]
remainder(x: f64, y: f64) -> f642 pub fn remainder(x: f64, y: f64) -> f64 {
3     let (result, _) = super::remquo(x, y);
4     result
5 }
6