Coverage Report

Created: 2025-07-18 06:22

/rust/registry/src/index.crates.io-6f17d22bba15001f/libm-0.2.11/src/math/remainder.rs
Line
Count
Source (jump to first uncovered line)
1
#[cfg_attr(all(test, assert_no_panic), no_panic::no_panic)]
2
0
pub fn remainder(x: f64, y: f64) -> f64 {
3
0
    let (result, _) = super::remquo(x, y);
4
0
    result
5
0
}