Defined in header <compare> | ||
---|---|---|
class weak_equality; | (since C++20) |
The class type std::weak_equality
is the result type of a three-way comparison that.
std::weak_equality
is the weakest comparison category type: it is not implicitly-convertible to any other comparison category, but the other four comparison categories (std::strong_equality
, std::partial_ordering
, std::weak_ordering
, std::strong_ordering
) are implicitly-convertible to std::weak_equality
.
The type std::weak_equality
has only two valid values, implemented as const static data members of its type: std::weak_equality::equivalent
and std::weak_equality::nonequivalent
:
Member constant | Definition |
---|---|
equivalent(inline constexpr)
[static] | a valid value of the type std::weak_equality indicating equivalence (public static member constant) |
nonequivalent(inline constexpr)
[static] | a valid value of the type std::weak_equality indicating non-equivalence (public static member constant) |
Comparison operators are defined between values of this type and literal 0
. This supports the expressions a <=> b == 0
and a <=> b != 0
used to convert the result of a three-way comparison operator to a boolean relationship; see std::is_eq
and std::is_neq
.
The behavior of a program that attempts to compare a weak_equality
with anything other than the integer literal 0
is undefined.
operator==operator!=operator<=> | compares with zero (function) |
friend constexpr bool operator==(weak_equality v, /*unspecified*/ u) noexcept; friend constexpr bool operator==(/*unspecified*/ u, weak_equality v) noexcept; |
v | - | a std::weak_equality value to check |
u | - | an unused parameter of any type that accepts literal zero argument |
true
if v
is equivalent
, false
if v
is nonequivalent
.
friend constexpr bool operator!=(weak_equality v, /*unspecified*/ u) noexcept; friend constexpr bool operator!=(/*unspecified*/ u, weak_equality v) noexcept; |
v | - | a std::weak_equality value to check |
u | - | an unused parameter of any type that accepts literal zero argument |
false
if v
is equivalent
, and true
if v
is nonequivalent
.
friend constexpr weak_equality operator<=>(weak_equality v, /*unspecified*/ u) noexcept; friend constexpr weak_equality operator<=>(/*unspecified*/ u, weak_equality v) noexcept; |
v | - | a std::weak_equality value to check |
u | - | an unused parameter of any type that accepts literal zero argument |
v
.
(C++20) | the result type of 3-way comparison that supports all 6 operators and is substitutable (class) |
(C++20) | the result type of 3-way comparison that supports all 6 operators and is not substitutable (class) |
(C++20) | the result type of 3-way comparison that supports all 6 operators, is not substitutable, and allows incomparable values (class) |
(C++20) | the result type of 3-way comparison that supports only equality/inequality and is substitutable (class) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/utility/compare/weak_equality