Пример #1
0
        public static CashFlow nextCashFlow(Bond bond, Date refDate = null)
        {
            if (refDate == null)
            {
                refDate = bond.settlementDate();
            }

            return(CashFlows.nextCashFlow(bond.cashflows(), false, refDate));
        }