Conceptos C++: LessThanComparable
De cppreference.com
|
|
Esta página se ha traducido por ordenador/computador/computadora de la versión en inglés de la Wiki usando Google Translate.
La traducción puede contener errores y palabras aparatosas/incorrectas. Planea sobre el texto para ver la versión original. Puedes ayudar a corregir los errores y mejorar la traducción. Para instrucciones haz clic aquí. |
El tipo debe trabajar con el operador <y el resultado debe tener semántica estándar .
Original:
The type must work with < operator and the result should have standard semantics.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Requisitos
| Expression | Requirements | Return type |
|---|---|---|
a < b
|
(Relación estricto orden débil)
Original: (strict weak ordering relation) The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
bool or a type implicitly convertible to bool
|