libitofin 0.11.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
13
14
15
16
17
//! Inflation term structures.
//!
//! Port of `ql/termstructures/inflationtermstructure.{hpp,cpp}` and the curves
//! under `ql/termstructures/inflation/`. The
//! [`ZeroInflationTermStructure`](inflationtermstructure::ZeroInflationTermStructure)
//! trait is the contract every zero-coupon inflation curve plugs into; the
//! interpolated curves and the seasonality corrections build on it; the
//! year-on-year structures follow within EPIC Inflation (#705).

pub mod inflationhelpers;
pub mod inflationtermstructure;
pub mod inflationtraits;
pub mod interpolatedzeroinflationcurve;
pub mod piecewisezeroinflationcurve;
pub mod seasonality;

pub use seasonality::{MultiplicativePriceSeasonality, Seasonality};