quantrs 0.1.8

A tiny Rust library for quantitative finance
Documentation
1
2
3
4
5
6
7
8
9
//! Module for various bond traits.

pub use bond::Bond;
pub use cashflow::{CashFlowAnalysis, CashFlowGenerator};
pub use day_count::DayCountConvention;

mod bond;
mod cashflow;
mod day_count;