Defined in header <compare> | ||
|---|---|---|
class strong_ordering; | (since C++20) |
The class type std::strong_ordering is the result type of a three-way comparison that.
==, !=, <, <=, >, >=) a < b, a == b, or a > b must be true. The type std::strong_ordering has four valid values, implemented as const static data members of its type:
| Member constant | Definition |
|---|---|
| less(inline constexpr)
[static] | a valid value of the type std::strong_ordering indicating less-than (ordered before) relationship (public static member constant) |
| equivalent(inline constexpr)
[static] | a valid value of the type std::strong_ordering indicating equivalence (neither ordered before nor ordered after), the same as equal (public static member constant) |
| equal(inline constexpr)
[static] | a valid value of the type std::strong_ordering indicating equivalence (neither ordered before nor ordered after), the same as equivalent (public static member constant) |
| greater(inline constexpr)
[static] | a valid value of the type std::strong_ordering indicating greater-than (ordered after) relationship (public static member constant) |
std::strong_ordering is the strongest of the three comparison categories: it is not implicitly-convertible from any other category and is implicitly-convertible to the other two.
| operator partial_ordering | implicit conversion to std::partial_ordering (public member function) |
constexpr operator partial_ordering() const noexcept; |
std::partial_ordering::less if v is less, std::partial_ordering::greater if v is greater, std::partial_ordering::equivalent if v is equal or equivalent.
| operator weak_ordering | implicit conversion to std::weak_ordering (public member function) |
constexpr operator weak_ordering() const noexcept; |
std::weak_ordering::less if v is less, std::weak_ordering::greater if v is greater, std::weak_ordering::equivalent if v is equal or equivalent.
Comparison operators are defined between values of this type and literal 0. This supports the expressions a <=> b == 0 or a <=> b < 0 that can be used to convert the result of a three-way comparison operator to a boolean relationship; see std::is_eq, std::is_lt, etc.
These functions are not visible to ordinary unqualified or qualified lookup, and can only be found by argument-dependent lookup when std::strong_ordering is an associated class of the arguments.
The behavior of a program that attempts to compare a strong_ordering with anything other than the integer literal 0 is undefined.
| operator==operator<operator>operator<=operator>=operator<=> | compares with zero or a strong_ordering (function) |
friend constexpr bool operator==( strong_ordering v, /* unspecified */ u ) noexcept; | (1) | |
friend constexpr bool operator==( strong_ordering v, strong_ordering w ) noexcept = default; | (2) |
| v, w | - | std::strong_ordering values to check |
| u | - | an unused parameter of any type that accepts literal zero argument |
true if v is equivalent or equal, false if v is less or greater
true if both parameters hold the same value, false otherwise. Note that equal is the same as equivalent. friend constexpr bool operator<( strong_ordering v, /* unspecified */ u ) noexcept; | (1) | |
friend constexpr bool operator<( /* unspecified */ u, strong_ordering v ) noexcept; | (2) |
| v | - | a std::strong_ordering value to check |
| u | - | an unused parameter of any type that accepts literal zero argument |
true if v is less, and false if v is greater, equivalent, or equal
true if v is greater, and false if v is less, equivalent, or equal friend constexpr bool operator<=( strong_ordering v, /* unspecified */ u ) noexcept; | (1) | |
friend constexpr bool operator<=( /* unspecified */ u, strong_ordering v ) noexcept; | (2) |
| v | - | a std::strong_ordering value to check |
| u | - | an unused parameter of any type that accepts literal zero argument |
true if v is less, equivalent, or equal, and false if v is greater
true if v is greater, equivalent, or equal, and false if v is less friend constexpr bool operator>( strong_ordering v, /* unspecified */ u ) noexcept; | (1) | |
friend constexpr bool operator>( /* unspecified */ u, strong_ordering v ) noexcept; | (2) |
| v | - | a std::strong_ordering value to check |
| u | - | an unused parameter of any type that accepts literal zero argument |
true if v is greater, and false if v is less, equivalent, or equal
true if v is less, and false if v is greater, equivalent, or equal friend constexpr bool operator>=( strong_ordering v, /* unspecified */ u ) noexcept; | (1) | |
friend constexpr bool operator>=( /* unspecified */ u, strong_ordering v ) noexcept; | (2) |
| v | - | a std::strong_ordering value to check |
| u | - | an unused parameter of any type that accepts literal zero argument |
true if v is greater, equivalent, or equal, and false if v is less
true if v is less, equivalent, or equal, and false if v is greater friend constexpr strong_ordering operator<=>( strong_ordering v, /* unspecified */ u ) noexcept; | (1) | |
friend constexpr strong_ordering operator<=>( /* unspecified */ u, strong_ordering v ) noexcept; | (2) |
| v | - | a std::strong_ordering value to check |
| u | - | an unused parameter of any type that accepts literal zero argument |
v.greater if v is less, less if v is greater, otherwise v. |
(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) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/utility/compare/strong_ordering