GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
std::equivalence_relation(3) C++ Standard Libary std::equivalence_relation(3)

std::equivalence_relation - std::equivalence_relation


Defined in header <concepts>
template < class R, class T, class U > (since C++20)
concept equivalence_relation = std::relation<R, T, U>;


The concept equivalence_relation<R, T, U> specifies that the relation R imposes an
equivalence relation on its arguments.


Semantic requirements


A relation r is an equivalence relation if


* it is reflexive: for all x, r(x, x) is true;
* it is symmetric: for all a and b, r(a, b) is true if and only if r(b, a) is
true;
* it is transitive: r(a, b) && r(b, c) implies r(a, c).


The distinction between relation and equivalence_relation is purely semantic.

2022.07.31 http://cppreference.com

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.