Namespaces
Variants
Views
Actions

Difference between revisions of "cpp/header/compare"

From cppreference.com
< cpp‎ | header
m (+)
m (correct)
Line 15: Line 15:
 
===Synopsis===
 
===Synopsis===
 
{{source|1=
 
{{source|1=
 
 
namespace std {
 
namespace std {
 
enum class eq { equal = 0, equivalent = 0, nonequal = 1, nonequivalent = 1 };
 
enum class eq { equal = 0, equivalent = 0, nonequal = 1, nonequivalent = 1 };

Revision as of 03:51, 25 November 2017

 
 
Standard library headers
 

This header is part of the general utility library.

Classes

Template:cpp/utility/compare/dsc weak equalityTemplate:cpp/utility/compare/dsc strong equality
the result type of 3-way comparison that supports all 6 operators, is not substitutable, and allows incomparable values
(class) [edit]
the result type of 3-way comparison that supports all 6 operators and is not substitutable
(class) [edit]
the result type of 3-way comparison that supports all 6 operators and is substitutable
(class) [edit]

Synopsis