//! High-level mathematical operations built on CORDIC kernels.
//!
//! This module provides user-friendly functions for computing various
//! mathematical operations using the CORDIC algorithm.
//!
//! # Modules
//!
//! - [`circular`]: Trigonometric functions (sin, cos, tan, asin, acos, atan, atan2)
//! - [`hyperbolic`]: Hyperbolic functions (sinh, cosh, tanh, asinh, acosh, atanh, acoth)
//! - [`exponential`]: Exponential and logarithmic functions (exp, ln, log2, log10, pow2)
//! - [`algebraic`]: Algebraic functions (sqrt)
// Re-export all public functions
pub use sqrt;
pub use ;
pub use ;
pub use ;