//! Fixed-income bond analytics.
//!
//! $$
//! P=\sum_{i=1}^{n}\frac{CF_i}{(1+y/m)^{m t_i}},\qquad
//! D_{\mathrm{Mac}}=\frac{\sum_i t_i\,PV_i}{P}
//! $$
//!
//! Reference: Fabozzi, "Fixed Income Mathematics", 4th ed. (2015).
//!
//! Reference: Ivanovski, Stojanovski & Ivanovska, "Interest Rate Risk of Bond
//! Prices on Macedonian Stock Exchange - Empirical Test of the Duration,
//! Modified Duration and Convexity and Bonds Valuation", arXiv:1206.6998 (2012).
pub use AmortizingFixedRateBond;
pub use FixedRateBond;
pub use FloatingRateBond;
pub use InflationLinkedBond;
pub use BondAnalytics;
pub use BondPrice;
pub use ZeroCouponBond;