std::partial_ordering
<compare>
The class type std::partial_ordering
is the result type of a three-way comparison that:
- Admits all six relational operators (
==
,!=
,<
,<=
,>
,>=
).
- Does not imply substitutability: if a is equivalent to b, f(a) may not be equivalent to f(b), where f denotes a function that reads only comparison-salient state that is accessible via the argument's public const members. In other words, equivalent values may be distinguishable.
- Admits incomparable values: a < b, a == b, and a > b may all be false.
Contents
[edit] Constants
The type std::partial_ordering
has four valid values, implemented as const static data members of its type:
(public static member constant)
(public static member constant)
(public static member constant)
(public static member constant)
[edit] Conversions
std::partial_ordering
cannot be implicitly converted to other comparison category types, while both std::strong_ordering and std::weak_ordering are implicitly-convertible to partial_ordering
.
[edit] Comparisons
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::partial_ordering
is an associated class of the arguments.
The behavior of a program that attempts to compare a partial_ordering
with anything other than the integer literal 0 is undefined.
partial_ordering
(function)
operator==
operator==( partial_ordering v, partial_ordering w ) noexcept = default;
Parameters
std::partial_ordering
values to check
Return value
v
is equivalent
, false if v
is less
, greater
, or unordered
operator<
Parameters
std::partial_ordering
value to check
Return value
v
is less
, and false if v
is greater
, equivalent
, or unordered
v
is greater
, and false if v
is less
, equivalent
, or unordered
operator<=
Parameters
std::partial_ordering
value to check
Return value
v
is less
or equivalent
, and false if v
is greater
or unordered
v
is greater
or equivalent
, and false if v
is less
or unordered
operator>
Parameters
std::partial_ordering
value to check
Return value
v
is greater
, and false if v
is less
, equivalent
, or unordered
v
is less
, and false if v
is greater
, equivalent
, or unordered
operator>=
Parameters
std::partial_ordering
value to check
Return value
v
is greater
or equivalent
, and false if v
is less
or unordered
v
is less
or equivalent
, and false if v
is greater
or unordered
operator<=>
Parameters
std::partial_ordering
value to check
Return value
greater
if v
is less
, less
if v
is greater
, otherwise v
.
[edit] Notes
The built-in operator<=>
between floating-point values uses this ordering: the positive zero and the negative zero compare equivalent
, but can be distinguished, and NaN values compare unordered
with any other value.
[edit] Example
Reason: no example
[edit] See also
(class) [edit]
(class) [edit]