formualizer-eval 0.5.4

High-performance Arrow-backed Excel formula engine with dependency graph and incremental recalculation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Financial functions
//! Functions implemented: PMT, PV, FV, NPV, NPER, RATE, IPMT, PPMT, SLN, SYD, DB, DDB,
//! XNPV, XIRR, DOLLARDE, DOLLARFR, ACCRINT, ACCRINTM, PRICE, YIELD,
//! TBILLEQ, TBILLPRICE, TBILLYIELD, ISPMT, PDURATION

mod bonds;
mod depreciation;
mod tvm;

pub use bonds::*;
pub use depreciation::*;
pub use tvm::*;

pub fn register_builtins() {
    bonds::register_builtins();
    tvm::register_builtins();
    depreciation::register_builtins();
}