mod exp_log;
mod helpers;
mod power;
mod roots;
mod rounding;
mod trig;
pub use exp_log::{expd, expf, lnd, lnf};
pub use power::{powd, powf};
pub use roots::{sqrtd, sqrtf};
pub use rounding::{roundd, roundf};
pub use trig::{cosd, cosf, sind, sinf, tanhd, tanhf};