[#BloombergLP-bdlt-Timetable-addTransitions] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlt.adoc[bdlt]::xref:BloombergLP/bdlt/Timetable.adoc[Timetable]::addTransitions :relfileprefix: ../../../ :mrdocs: Add transitions at `time` with `code` on `dayOfWeek` dates in range. == Synopsis Declared in `<bdlt_timetable.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void addTransitions( xref:BloombergLP/bdlt/DayOfWeek/Enum.adoc[DayOfWeek::Enum] const& dayOfWeek, xref:BloombergLP/bdlt/Time.adoc[Time] const& time, int code, xref:BloombergLP/bdlt/Date.adoc[Date] const& firstDate, xref:BloombergLP/bdlt/Date.adoc[Date] const& lastDate); ---- == Description Add transitions to this timetable that occur at the specified `time`, having the specified `code`, on all dates that are of the specified `dayOfWeek` within the closed interval of dates from the specified `firstDate` to the specified `lastDate`. For every date on which this transition will occur, if `time` is already a transition point, replace the existing code with `code`. The addition of a transition, but not the replacement of the code of an existing transition, invalidates all iterators. The behavior is undefined unless `24 > time.hour()`, `firstDate <= lastDate`, `firstDate` and `lastDate` are within the valid range of this timetable, and `0 <= code || k_UNSET_TRANSITION_CODE == code`. == Parameters [cols="1,4"] |=== | Name| Description | *dayOfWeek* | day of week on which to add transitions | *time* | time of day of each added transition | *code* | transition code | *firstDate* | first date of the closed interval | *lastDate* | last date of the closed interval |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#