[#BloombergLP-bdlt-operator_lt-0c5] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlt.adoc[bdlt]::operator< :relfileprefix: ../../ :mrdocs: Return `true` if `lhs` daily timetable is less than `rhs`. == Synopsis Declared in `<bdlt_timetable.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- bool operator<( xref:BloombergLP/bdlt/Timetable_Day.adoc[Timetable_Day] const& lhs, xref:BloombergLP/bdlt/Timetable_Day.adoc[Timetable_Day] const& rhs); ---- == Description Return `true` if the specified `lhs` daily timetable is less than the specified `rhs` daily timetable, and `false` otherwise. The `lhs` daily timetable is less than the `rhs` daily timetable if `lhs.initialTransitionCode() < rhs.initialTransitionCode()`, or `lhs.initialTransitionCode() == rhs.initialTransitionCode()` and `lhs.d_transitions < rhs.d_transitions`. == Return Value `true` if `lhs` is less than `rhs` == Parameters [cols="1,4"] |=== | Name| Description | *lhs* | first daily timetable | *rhs* | second daily timetable |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#