[#BloombergLP-bdlt-Calendar-getNextBusinessDay-04] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlt.adoc[bdlt]::xref:BloombergLP/bdlt/Calendar.adoc[Calendar]::getNextBusinessDay :relfileprefix: ../../../ :mrdocs: `getNextBusinessDay` overloads == Synopses Declared in `<bdlt_calendar.h>` Return the date of the first business day following the specified `initialDate`. For dates outside of the range of this calendar, only weekend days are considered non‐business days. The behavior is undefined if every day of the week is a weekend day, or if the resulting date would otherwise exceed the value `Date(9999, 12, 31)`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:BloombergLP/bdlt/Date.adoc[Date] xref:BloombergLP/bdlt/Calendar/getNextBusinessDay-0d.adoc[getNextBusinessDay](xref:BloombergLP/bdlt/Date.adoc[Date] const& initialDate) const; ---- [.small]#xref:BloombergLP/bdlt/Calendar/getNextBusinessDay-0d.adoc[_» more..._]# Return the date of the specified `nth` business day following the specified `initialDate`. For dates outside of the range of this calendar, only weekend days are considered non‐business days. The behavior is undefined unless `initialDate` is within the valid range and `1 <= nth` (or if every day of the week is a weekend day, or if the resulting date would otherwise exceed the value `Date(9999, 12, 31)`). [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:BloombergLP/bdlt/Date.adoc[Date] xref:BloombergLP/bdlt/Calendar/getNextBusinessDay-09.adoc[getNextBusinessDay]( xref:BloombergLP/bdlt/Date.adoc[Date] const& initialDate, int nth) const; ---- [.small]#xref:BloombergLP/bdlt/Calendar/getNextBusinessDay-09.adoc[_» more..._]# 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. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- int xref:BloombergLP/bdlt/Calendar/getNextBusinessDay-0a.adoc[getNextBusinessDay]( xref:BloombergLP/bdlt/Date.adoc[Date]* nextBusinessDay, xref:BloombergLP/bdlt/Date.adoc[Date] const& date) const; ---- [.small]#xref:BloombergLP/bdlt/Calendar/getNextBusinessDay-0a.adoc[_» 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`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- int xref:BloombergLP/bdlt/Calendar/getNextBusinessDay-0e.adoc[getNextBusinessDay]( xref:BloombergLP/bdlt/Date.adoc[Date]* nextBusinessDay, xref:BloombergLP/bdlt/Date.adoc[Date] const& date, int nth) const; ---- [.small]#xref:BloombergLP/bdlt/Calendar/getNextBusinessDay-0e.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#