//! This module contains functions for calculating interest rates.
//!
//! For example, you can calculate the annual percentage rate (APR) from the effective annual rate (EAR), or vice versa.
//! Also incudes IRR (Internal Rate of Return), MIRR (Modified Internal Rate of Return), and more.
// APR and EAR
pub use ;
// IRR and MIRR
pub use ;
// XIRR and XMIRR
pub use ;
// CAGR
pub use cagr;
// Percent Change
pub use ;
// TWR
pub use twr;