rust_finprim 0.5.1

Various finance and accounting calculations/formulas implemented Rust
1
2
3
4
5
6
7
//! Utility Funcitons

mod newton_raphson;
pub use newton_raphson::newton_raphson;

mod halley;
pub use halley::halley;