1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
//! Special functions
//!
//! Special functions are particular mathematical functions that have more or less established
//! names and notations due to their importance in mathematical analysis, functional analysis,
//! geometry, physics, or other applications.
//!
//! Fore more information:
//! <a href="https://en.wikipedia.org/wiki/List_of_mathematical_functions">https://en.wikipedia
//! .org/wiki/List_of_mathematical_functions</a>

pub mod beta;
pub mod gamma;
pub mod hypergeometric;
pub mod error;