示例#1
0
        public static double?nextCashFlowAmount(Bond bond, Date refDate = null)
        {
            if (refDate == null)
            {
                refDate = bond.settlementDate();
            }

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