finance-solution 0.1.0

Time-value-of-money, cashflow, amortization, and related finance formulas with fallible Result APIs, detailed solutions, and pretty-printed tables.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Educational doubling-time helpers: Rule of 72 / 69 / 70 and exact formulas.
//!
//! Use [`doubling_solution`] for a full comparison at one rate (formulas + table),
//! or [`doubling_compare_rates`] to see how approximations behave across rates.
//!
//! All public functions return [`crate::FinanceResult`] (Result-only API, v0.1+).
pub mod rule_of_72;

#[doc(inline)]
pub use rule_of_72::*;