Coverage Report

Created: 2026-01-25 06:52

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/rust/registry/src/index.crates.io-1949cf8c6b5b557f/libm-0.2.15/src/math/lgamma.rs
Line
Count
Source
1
use super::lgamma_r;
2
3
/// The natural logarithm of the
4
/// [Gamma function](https://en.wikipedia.org/wiki/Gamma_function) (f64).
5
#[cfg_attr(all(test, assert_no_panic), no_panic::no_panic)]
6
0
pub fn lgamma(x: f64) -> f64 {
7
0
    lgamma_r(x).0
8
0
}