libitofin 0.7.0

A ground-up Rust port of QuantLib: quantitative-finance primitives for pricing, risk, and numerical methods.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Bond pricing helpers.
//!
//! Port of `ql/pricingengines/bond/`: the free-function analytics a [`Bond`]
//! is priced through.
//!
//! [`Bond`]: crate::instruments::Bond

mod bondfunctions;
mod discountingbondengine;

pub use bondfunctions::BondFunctions;
pub use discountingbondengine::DiscountingBondEngine;