getNextBusinessDay overloads
Declared in <bdlt_calendar.h>
Return the first business day following initialDate.
Date
getNextBusinessDay(Date const& initialDate) const;
» more...
Return the nth business day following initialDate.
Date
getNextBusinessDay(
Date const& initialDate,
int nth) const;
» more...
Load the first business day after date into nextBusinessDay.
int
getNextBusinessDay(
Date* nextBusinessDay,
Date const& date) const;
» more...
Load the nth business day after date into nextBusinessDay.
int
getNextBusinessDay(
Date* nextBusinessDay,
Date const& date,
int nth) const;
» more...
initialDatenth business day following initialDate| Name | Description |
|---|---|
| initialDate | date after which to find a business day |
| nth | one-based count of business days to advance |
| nextBusinessDay | receives the next business day on success |
| date | date after which to find a business day |