...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
LessThanComparable
x
, y
Name | Expression | Type | Semantics |
---|---|---|---|
Less than |
x < y |
Convertible to bool |
Determine if one value is less than another. |
Less than or equal |
x <= y |
Convertible to bool |
Determine if one value is less than or equal to another. |
Greater than |
x > y |
Convertible to bool |
Determine if one value is greater than another. |
Greater than or equal to |
x >= y |
Convertible to bool |
Determine if one value is greater than or equal to another. |