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