blob: 9e966c9ed7f4afd12f645e8df40742eb3892588e [file] [log] [blame]
#[cfg_attr(all(test, assert_no_panic), no_panic::no_panic)]
pub fn remainder(x: f64, y: f64) -> f64 {
let (result, _) = super::remquo(x, y);
result
}