Home | Libraries | People | FAQ | More |
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. |