quantlib 0.1.0

The quantitative finance libary for rust.
Documentation
1
2
3
4
5
6
7
use quantlib::bonds::Bond;

fn main() {
    let b = Bond { ytm: 40 };

    println!("b: {:?}", b);
}