Greater-than-or-equal operators
Declared in <bdlt_date.h>
Return true if the specified lhs date is later than or the same as the specified rhs date, and false otherwise.
bool
operator>=(
Date const& lhs,
Date const& rhs);
» more...
Return true if lhs is greater than or equal to rhs.
bool
operator>=(
Datetime const& lhs,
Datetime const& rhs);
» more...
Return true if the specified lhs interval is greater than or equal to the specified rhs interval, and false otherwise.
bool
operator>=(
DatetimeInterval const& lhs,
DatetimeInterval const& rhs);
» more...
Return true if lhs is later than or equal to rhs.
bool
operator>=(
Time const& lhs,
Time const& rhs);
» more...
true if lhs is later than or the same as rhstrue if lhs is greater than or equal to rhstrue if lhs is greater than or equal to rhs, and false otherwisetrue if lhs is later than or equal to rhs, and false otherwise| Name | Description |
|---|---|
| lhs | left-hand date operand |
| rhs | right-hand date operand |