C++ named requirements: LessThanComparable

From cppreference.com
< cpp‎ | named req
 
 
C++ named requirements
Basic
Type properties
Library-Wide
LessThanComparable
Container
Container Elements
(C++11)

Iterator
Stream I/O
Formatters
(C++20)
Random Numbers
(C++11)    
Concurrency
(C++11)
(C++11)
Ranges
Other
(C++11)


 

The type must work with < operator and the result should have standard semantics.

Requirements

The type T satisfies LessThanComparable if given expressions a, b and c of type T or const T(since C++11), the following expression is valid and has its specified effects:

 Expression  Type Effects
a < b implicitly convertible to bool 
(until C++23)
Establishes strict weak ordering relation with the following properties:
  • For all a, !(a < a) yields true.
  • If a < b, then !(b < a).
  • If a < b and b < c, then a < c.
  • Defining equiv(a, b) as !(a < b) && !(b < a), if equiv(a, b) and equiv(b, c), then equiv(a, c).
models boolean-testable
(since C++23)

Notes

To satisfy this requirement, types that do not have built-in comparison operators have to provide a user-defined operator<.

For the types that are both EqualityComparable and LessThanComparable, the C++ standard library makes a distinction between

  • Equality, which is the value of the expression a == b and
  • Equivalence, which is the value of the expression !(a < b) && !(b < a).

See also

a BinaryPredicate that establishes an ordering relation
(named requirement)
specifies that a relation imposes a strict weak ordering
(concept)