pub fn cumipmt<P, F, T>( rate: f64, periods: u32, present_value: P, future_value: F, start_period: u32, end_period: u32, timing: T, ) -> FinanceResult<f64>where P: Into<f64> + Copy, F: Into<f64> + Copy, T: Into<PaymentTiming>,
Cumulative interest paid between two periods inclusive (Excel CUMIPMT).
CUMIPMT
Same domain as cumprinc.
cumprinc