Namespaces
Variants
Views
Actions

C++ named requirements: EqualityComparable

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

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


 

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

Contents

[edit] Requirements

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

 Expression  Type Effects
a == b implicitly convertible to bool 
(until C++23)
Establishes an equivalence relation, that is, it satisfies the following properties:
  • For all values of a, a == a yields true.
  • If a == b, then b == a.
  • If a == b and b == c, then a == c.
models boolean-testable
(since C++23)

[edit] 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).

[edit] Defect reports

The following behavior-changing defect reports were applied retroactively to previously published C++ standards.

DR Applied to Behavior as published Correct behavior
LWG 283 C++98 even if T is EqualityComparable, the
requirements did not apply to const T objects
they apply to
const T instead of T

[edit] See also

specifies that operator == is an equivalence relation
(concept) [edit]