About
Contact
QtCreator
KDevelop
Solarized
1
use
super
::
lgamma_r
;
2
3
#[
cfg_attr
(all(test, assert_no_panic), no_panic::no_panic)]
4
pub
fn
lgamma
(
x
:
f64
) ->
f64
{
5
lgamma_r
(
x
).
0
6
}
7