1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
//! Elementary functions
//!
//! Fore more information:
//! <a href="https://en.wikipedia.org/wiki/Elementary_function">https://en.wikipedia.org/wiki/Elementary_function</a>

mod power;

mod exponential;

mod trigonometry;

mod hyperbolic;

pub use self::{
    exponential::Exponential, hyperbolic::Hyperbolic, power::Power, trigonometry::Trigonometry,
};