/rust/registry/src/index.crates.io-6f17d22bba15001f/libm-0.2.11/src/math/remainderf.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 remainderf(x: f32, y: f32) -> f32 {
3
let (result, _) = super::remquof(x, y);
4
result
5
}