[#BloombergLP-bdlt-operator_lt-0c1] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlt.adoc[bdlt]::operator< :relfileprefix: ../../ :mrdocs: Less‐than operators == Synopses Declared in `<bdlt_date.h>` Return `true` if the specified `lhs` date is earlier than the specified `rhs` date, and `false` otherwise. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- bool xref:BloombergLP/bdlt/operator_lt-01.adoc[operator<]( xref:BloombergLP/bdlt/Date.adoc[Date] const& lhs, xref:BloombergLP/bdlt/Date.adoc[Date] const& rhs); ---- [.small]#xref:BloombergLP/bdlt/operator_lt-01.adoc[_» more..._]# Return `true` if the value of the specified `lhs` object is less than the value of the specified `rhs` object, and `false` otherwise. A `Datetime` object `a` is less than a `Datetime` object `b` if `a.date() < b.date()`, or if `a.date() == b.date()` and the time portion of `a` is less than the time portion of `b`. The behavior is undefined unless `24 != lhs.hour() && 24 != rhs.hour()`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- bool xref:BloombergLP/bdlt/operator_lt-0d.adoc[operator<]( xref:BloombergLP/bdlt/Datetime.adoc[Datetime] const& lhs, xref:BloombergLP/bdlt/Datetime.adoc[Datetime] const& rhs); ---- [.small]#xref:BloombergLP/bdlt/operator_lt-0d.adoc[_» more..._]# Return `true` if the nominal relation between the specified `lhs` and `rhs` time interval values holds, and `false` otherwise. `lhs` is less than `rhs` if the following expression evaluates to `true`: ` lhs.days() < rhs.days() || (lhs.days() == rhs.days() && lhs.fractionalDayInMicroseconds() < rhs.fractionalDayInMicroseconds()) ` The other relationships are defined similarly. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- bool xref:BloombergLP/bdlt/operator_lt-04.adoc[operator<]( xref:BloombergLP/bdlt/DatetimeInterval.adoc[DatetimeInterval] const& lhs, xref:BloombergLP/bdlt/DatetimeInterval.adoc[DatetimeInterval] const& rhs); ---- [.small]#xref:BloombergLP/bdlt/operator_lt-04.adoc[_» more..._]# Return `true` if the specified `lhs` time value is less than the specified `rhs` time value, and `false` otherwise. The behavior is undefined unless `lhs != Time()` and `rhs != Time()` (i.e., they do not have the, default, value 24:00:00.000000). [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- bool xref:BloombergLP/bdlt/operator_lt-0a.adoc[operator<]( xref:BloombergLP/bdlt/Time.adoc[Time] const& lhs, xref:BloombergLP/bdlt/Time.adoc[Time] const& rhs); ---- [.small]#xref:BloombergLP/bdlt/operator_lt-0a.adoc[_» more..._]# 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`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- bool xref:BloombergLP/bdlt/operator_lt-0c5.adoc[operator<]( xref:BloombergLP/bdlt/Timetable_Day.adoc[Timetable_Day] const& lhs, xref:BloombergLP/bdlt/Timetable_Day.adoc[Timetable_Day] const& rhs); ---- [.small]#xref:BloombergLP/bdlt/operator_lt-0c5.adoc[_» more..._]# Return `true` if the specified `lhs` has a value less than the specified `rhs`, and `false` otherwise. Timetable transition `lhs` has a value less than timetable transition `rhs` if `lhs.datetime() < rhs.datetime()`, or `lhs.datetime() == rhs.datetime()` and `lhs.code() < rhs.code()`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- bool xref:BloombergLP/bdlt/operator_lt-03c.adoc[operator<]( xref:BloombergLP/bdlt/TimetableTransition.adoc[TimetableTransition] const& lhs, xref:BloombergLP/bdlt/TimetableTransition.adoc[TimetableTransition] const& rhs); ---- [.small]#xref:BloombergLP/bdlt/operator_lt-03c.adoc[_» more..._]# Return `true` if the specified `lhs` has a value less than the specified `rhs`, and `false` otherwise. Timetable transition `lhs` has a value less than datetime `rhs` if `lhs.datetime() < rhs`. The behavior is undefined unless `24 > rhs.hour()`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- bool xref:BloombergLP/bdlt/operator_lt-0e.adoc[operator<]( xref:BloombergLP/bdlt/TimetableTransition.adoc[TimetableTransition] const& lhs, xref:BloombergLP/bdlt/Datetime.adoc[Datetime] const& rhs); ---- [.small]#xref:BloombergLP/bdlt/operator_lt-0e.adoc[_» more..._]# Return `true` if the specified `lhs` has a value less than the specified `rhs`, and `false` otherwise. Datetime `lhs` has a value less than timetable transition `rhs` if `lhs < rhs.datetime()`. The behavior is undefined unless `24 > lhs.hour()`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- bool xref:BloombergLP/bdlt/operator_lt-034.adoc[operator<]( xref:BloombergLP/bdlt/Datetime.adoc[Datetime] const& lhs, xref:BloombergLP/bdlt/TimetableTransition.adoc[TimetableTransition] const& rhs); ---- [.small]#xref:BloombergLP/bdlt/operator_lt-034.adoc[_» more..._]# Return `true` if the specified `lhs` has a value less than the specified `rhs`, and `false` otherwise. Compactable transition `lhs` has a value less than compactable transition `rhs` if `lhs.time() < rhs.time()`, or `lhs.time() == rhs.time()` and `lhs.code() < rhs.code()`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- bool xref:BloombergLP/bdlt/operator_lt-0b.adoc[operator<]( xref:BloombergLP/bdlt/Timetable_CompactableTransition.adoc[Timetable_CompactableTransition] const& lhs, xref:BloombergLP/bdlt/Timetable_CompactableTransition.adoc[Timetable_CompactableTransition] const& rhs); ---- [.small]#xref:BloombergLP/bdlt/operator_lt-0b.adoc[_» more..._]# Return `true` if the specified `lhs` has a value less than the specified `rhs`, and `false` otherwise. Compactable transition `lhs` has a value less than time `rhs` if `lhs.time() < rhs`. The behavior is undefined unless `24 > rhs.hour()`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- bool xref:BloombergLP/bdlt/operator_lt-08a.adoc[operator<]( xref:BloombergLP/bdlt/Timetable_CompactableTransition.adoc[Timetable_CompactableTransition] const& lhs, xref:BloombergLP/bdlt/Time.adoc[Time] const& rhs); ---- [.small]#xref:BloombergLP/bdlt/operator_lt-08a.adoc[_» more..._]# Return `true` if the specified `lhs` has a value less than the specified `rhs`, and `false` otherwise. Time `lhs` has a value less than compactable transition `rhs` if `lhs < rhs.time()`. The behavior is undefined unless `24 > lhs.hour()`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- bool xref:BloombergLP/bdlt/operator_lt-08c.adoc[operator<]( xref:BloombergLP/bdlt/Time.adoc[Time] const& lhs, xref:BloombergLP/bdlt/Timetable_CompactableTransition.adoc[Timetable_CompactableTransition] const& rhs); ---- [.small]#xref:BloombergLP/bdlt/operator_lt-08c.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#