Less-than operators
Declared in <bdldfp_decimal.h>
Return true if the specified lhs has a value less than the specified rhs and false otherwise.
bool
operator<(
Decimal32 lhs,
Decimal32 rhs);
» more...
Return true if the specified lhs has a value less than the specified rhs and false otherwise.
bool
operator<(
Decimal64 lhs,
Decimal64 rhs);
» more...
Return true if the specified lhs has a value less than the specified rhs and false otherwise.
bool
operator<(
Decimal32 lhs,
Decimal64 rhs);
» more...
Return true if lhs is less than rhs.
bool
operator<(
Decimal64 lhs,
Decimal32 rhs);
» more...
Return true if the specified lhs has a value less than the specified rhs and false otherwise.
bool
operator<(
Decimal128 lhs,
Decimal128 rhs);
» more...
Return true if the specified lhs has a value less than the specified rhs and false otherwise.
bool
operator<(
Decimal32 lhs,
Decimal128 rhs);
» more...
Return true if lhs is less than rhs.
bool
operator<(
Decimal128 lhs,
Decimal32 rhs);
» more...
Return true if lhs is less than rhs.
bool
operator<(
Decimal64 lhs,
Decimal128 rhs);
» more...
Return true if lhs is less than rhs.
bool
operator<(
Decimal128 lhs,
Decimal64 rhs);
» more...
true if the specified lhs has a value less than the specified rhs and false otherwisetrue if lhs is less than rhs| Name | Description |
|---|---|
| lhs | left-hand operand |
| rhs | right-hand operand |