C++ 概念: LessThanComparable

来自cppreference.com
< cpp‎ | concept

<运算符和类型必须工作的结果应该有标准的语义.
原文:
The type must work with < operator and the result should have standard semantics.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里


[编辑] 要求

Expression Requirements Return type
a < b
  • !(x < x)
  • 如果a < b然后!(b < a)
    原文:
    if a < b then !(b < a)
    这段文字是通过 Google Translate 自动翻译生成的。
    您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
  • 如果a < bb < c然后a < c
    原文:
    if a < b and b < c then a < c
    这段文字是通过 Google Translate 自动翻译生成的。
    您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
(严格的弱序关系)
原文:
(strict weak ordering relation)
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
bool or a type implicitly convertible to bool