[#BloombergLP-bdlt-operator_ge-03] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlt.adoc[bdlt]::operator>= :relfileprefix: ../../ :mrdocs: Return `true` if `lhs` is greater than or equal to `rhs`. == Synopsis Declared in `<bdlt_datetime.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- bool operator>=( xref:BloombergLP/bdlt/Datetime.adoc[Datetime] const& lhs, xref:BloombergLP/bdlt/Datetime.adoc[Datetime] const& rhs); ---- == Description Return `true` if the value of the specified `lhs` object is greater than or equal to the value of the specified `rhs` object, and `false` otherwise. The behavior is undefined unless `24 != lhs.hour() && 24 != rhs.hour()`. == Return Value `true` if `lhs` is greater than or equal to `rhs` == Parameters [cols="1,4"] |=== | Name| Description | *lhs* | left‐hand datetime operand | *rhs* | right‐hand datetime operand |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#