[#BloombergLP-bsls-operator_lt-05] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bsls.adoc[bsls]::operator< :relfileprefix: ../../ :mrdocs: Less‐than operators == Synopses Declared in `<bsls_timeinterval.h>` Return `true` if the nominal relation between the specified `lhs` and `rhs` time interval values holds, and `false` otherwise. The behavior is undefined unless operands of type `double` can be converted to valid `TimeInterval` objects. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- bool xref:BloombergLP/bsls/operator_lt-01.adoc[operator<]( xref:BloombergLP/bsls/TimeInterval.adoc[TimeInterval] const& lhs, xref:BloombergLP/bsls/TimeInterval.adoc[TimeInterval] const& rhs); ---- [.small]#xref:BloombergLP/bsls/operator_lt-01.adoc[_» more..._]# Same as the preceding overload, converting `rhs` from `double`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- bool xref:BloombergLP/bsls/operator_lt-022.adoc[operator<]( xref:BloombergLP/bsls/TimeInterval.adoc[TimeInterval] const& lhs, double rhs); ---- [.small]#xref:BloombergLP/bsls/operator_lt-022.adoc[_» more..._]# Same as the preceding overload, converting `lhs` from `double`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- bool xref:BloombergLP/bsls/operator_lt-029.adoc[operator<]( double lhs, xref:BloombergLP/bsls/TimeInterval.adoc[TimeInterval] const& rhs); ---- [.small]#xref:BloombergLP/bsls/operator_lt-029.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#