| 1 | // Note: generic functions are marked `#[inline]` because, even though generic functions are |
| 2 | // typically inlined, this does not seem to always be the case. |
| 3 | |
| 4 | mod ceil; |
| 5 | mod copysign; |
| 6 | mod fabs; |
| 7 | mod fdim; |
| 8 | mod floor; |
| 9 | mod fmax; |
| 10 | mod fmaximum; |
| 11 | mod fmaximum_num; |
| 12 | mod fmin; |
| 13 | mod fminimum; |
| 14 | mod fminimum_num; |
| 15 | mod fmod; |
| 16 | mod rint; |
| 17 | mod round; |
| 18 | mod scalbn; |
| 19 | mod sqrt; |
| 20 | mod trunc; |
| 21 | |
| 22 | pub use ceil::ceil; |
| 23 | pub use copysign::copysign; |
| 24 | pub use fabs::fabs; |
| 25 | pub use fdim::fdim; |
| 26 | pub use floor::floor; |
| 27 | pub use fmax::fmax; |
| 28 | pub use fmaximum::fmaximum; |
| 29 | pub use fmaximum_num::fmaximum_num; |
| 30 | pub use fmin::fmin; |
| 31 | pub use fminimum::fminimum; |
| 32 | pub use fminimum_num::fminimum_num; |
| 33 | pub use fmod::fmod; |
| 34 | pub use rint::rint_round; |
| 35 | pub use round::round; |
| 36 | pub use scalbn::scalbn; |
| 37 | pub use sqrt::sqrt; |
| 38 | pub use trunc::trunc; |
| 39 | |