getNextBusinessDay overloads
Declared in <bdlt_packedcalendar.h>
Load, into the specified nextBusinessDay, the date of the first business day in this calendar following the specified date. Return 0 on success -- i.e., if such a business day exists, and a non-zero value (with no effect on nextBusinessDay) otherwise. The behavior is undefined unless date + 1 is both a valid bdlt::Date and within the valid range of this calendar.
int
getNextBusinessDay(
Date* nextBusinessDay,
Date const& date) const;
» more...
Load, into the specified nextBusinessDay, the date of the specified nth business day in this calendar following the specified date. Return 0 on success -- i.e., if such a business day exists, and a non-zero value (with no effect on nextBusinessDay) otherwise. The behavior is undefined unless date + 1 is both a valid bdlt::Date and within the valid range of this calendar, and 0 < nth.
int
getNextBusinessDay(
Date* nextBusinessDay,
Date const& date,
int nth) const;
» more...