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