1
Fork 0

Auto merge of #99747 - ankane:float_gamma, r=workingjubilee

Add gamma function to f32 and f64

Adds the [gamma function](https://en.wikipedia.org/wiki/Gamma_function) to `f32` and `f64` (`tgamma` and `tgammaf` from C).

Refs:
- https://github.com/rust-lang/rfcs/issues/864
- https://github.com/rust-lang/rust/issues/18271
This commit is contained in:
bors 2023-08-09 03:14:31 +00:00
commit 8838c73e86
9 changed files with 161 additions and 4 deletions

View file

@ -288,6 +288,7 @@
#![feature(exact_size_is_empty)]
#![feature(exclusive_wrapper)]
#![feature(extend_one)]
#![feature(float_gamma)]
#![feature(float_minimum_maximum)]
#![feature(float_next_up_down)]
#![feature(hasher_prefixfree_extras)]