rust_finprim/tvm/mod.rs
1//! This module contains functions related to Time Value of Money (TVM) calculations.
2//!
3//! For example, you can calculate the future value of an investment, the present value of a future cash flow, or the payment amount for a loan.
4//!
5//! The Time Value of Money (TVM) is a financial concept that states that money in the present is worth more than the same amount in the future due to its potential earning capacity.
6//! This concept is the basis for many financial calculations, including the calculation of interest rates, loan payments, and investment returns.
7
8// FV - Future Value
9mod fv;
10pub use fv::fv;
11
12// PV - Present Value
13mod pv;
14pub use pv::{npv, npv_differing_rates, pv, xnpv};
15
16// PMT - Payment
17mod pmt;
18pub use pmt::pmt;