libm 0.1.4

libm in pure Rust
Documentation
1
2
3
4
5
use super::lgammaf_r;

pub fn lgammaf(x: f32) -> f32 {
    lgammaf_r(x).0
}