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
26
27
28
29
30
/// Algebra
///
/// Fore more information:
/// <a href="https://en.wikipedia.org/wiki/Algebra">https://en.wikipedia.org/wiki/Algebra</a>
pub mod algebra;

/// Elementary functions
///
/// Fore more information:
/// <a href="https://en.wikipedia.org/wiki/Elementary_function">https://en.wikipedia.org/wiki/Elementary_function</a>
pub mod elementary;

/// Numbers
#[macro_use]
pub mod num;

/// Special functions
///
/// 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 special;

/// Statistics
///
/// Fore more information:
/// <a href="https://en.wikipedia.org/wiki/Statistics">https://en.wikipedia.org/wiki/Statistics</a>
pub mod stats;