libm 0.2.16

libm in pure Rust
Documentation
1
2
3
4
5
#[cfg_attr(assert_no_panic, no_panic::no_panic)]
pub fn remainder(x: f64, y: f64) -> f64 {
    let (result, _) = super::remquo(x, y);
    result
}