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
31
32
33
34
35
36
37
//! High-level operations on the numbers.
mod acos;
mod acosh;
mod airy;
mod asin;
mod asinh;
mod atan;
mod atan2;
mod atanh;
mod cbrt;
pub mod consts;
mod cos;
mod cosh;
mod expm1;
mod fma;
mod hypot;
mod ieee;
mod log;
mod log1p;
mod nroot;
mod pow;
mod recip;
mod series;
mod sign;
mod sin;
mod sin_cos;
mod sinh;
mod sinh_cosh;
pub(crate) mod special;
mod sqrt;
mod tan;
mod tanh;
mod util;
#[cfg(test)]
mod tests;