1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//! [Special functions][1].
//!
//! [1]: https://en.wikipedia.org/wiki/Special_functions

#![no_std]

#![allow(clippy::excessive_precision)]

#[cfg(test)]
extern crate assert;

#[cfg(test)]
extern crate alloc;

extern crate libm;

mod beta;
mod error;
mod gamma;
mod primitive;

pub use beta::Beta;
pub use error::Error;
pub use gamma::Gamma;
pub use primitive::Primitive;