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