Coverage Report

Created: 2026-03-12 06:29

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/rust/registry/src/index.crates.io-1949cf8c6b5b557f/libm-0.2.16/src/math/remainderf.rs
Line
Count
Source
1
#[cfg_attr(assert_no_panic, no_panic::no_panic)]
2
0
pub fn remainderf(x: f32, y: f32) -> f32 {
3
0
    let (result, _) = super::remquof(x, y);
4
0
    result
5
0
}