| //! Vertical floating-point math operations. | |
| #![allow(clippy::useless_transmute)] | |
| #[macro_use] | |
| pub(crate) mod macros; | |
| pub(crate) mod abs; | |
| pub(crate) mod cos; | |
| pub(crate) mod cos_pi; | |
| pub(crate) mod exp; | |
| pub(crate) mod ln; | |
| pub(crate) mod mul_add; | |
| pub(crate) mod mul_adde; | |
| pub(crate) mod powf; | |
| pub(crate) mod sin; | |
| pub(crate) mod sin_cos_pi; | |
| pub(crate) mod sin_pi; | |
| pub(crate) mod sqrt; | |
| pub(crate) mod sqrte; | |
| pub(crate) mod tanh; |