std::weak_order
来自 cppreference.com
定义在头文件 <compare> 中 |
||
inline namespace /* unspecified */ { inline constexpr /* unspecified */ weak_order = /* unspecified */; |
(自 C++20 起) | |
调用签名 |
||
template< class T, class U > requires /* see below */ |
||
使用三路比较对两个值进行比较,并生成类型为 std::weak_ordering
的结果。
令 t 和 u 为表达式,T
和 U
分别表示 decltype((t)) 和 decltype((u)),std::weak_order(t, u) 等价于
- 如果 std::is_same_v<std::decay_t<T>, std::decay_t<U>> 为 true
- std::weak_ordering(weak_order(t, u)),如果它是一个格式良好的表达式,并且在不包含
std::weak_order
声明的上下文中执行了重载解析, - 否则,如果
T
是一个浮点类型- 如果 std::numeric_limits<T>::is_iec559 为 true,则执行浮点值的弱排序比较(见下文),并将结果作为
std::weak_ordering
类型的返回值, - 否则,产生一个类型为
std::weak_ordering
的值,该值与T
的比较运算符观察到的排序一致,
- 如果 std::numeric_limits<T>::is_iec559 为 true,则执行浮点值的弱排序比较(见下文),并将结果作为
- 否则,std::weak_ordering(std::compare_three_way()(t, u)),如果它格式良好,
- 否则,std::weak_ordering(std::strong_order(t, u)),如果它格式良好。
- std::weak_ordering(weak_order(t, u)),如果它是一个格式良好的表达式,并且在不包含
- 在所有其他情况下,表达式格式不正确,这会导致 替换失败,当它出现在模板实例化的直接上下文中时。
内容 |
定制点对象
名称 std::weak_order
表示一个定制点对象,它是一个常量 函数对象,类型为 文字 semiregular
类类型。为了说明目的,其类型的 cv 无限定版本表示为 __weak_order_fn
。
所有 __weak_order_fn
实例都相等。调用类型 __weak_order_fn
的不同实例对相同参数的效果是等效的,无论表示该实例的表达式是左值还是右值,以及是否进行常量限定(但是,不需要调用易变限定的实例)。因此,可以自由复制 std::weak_order
,并且可以互换使用其副本。
给定一组类型 Args...
,如果 std::declval<Args>()... 满足上面 std::weak_order
参数的要求,则 __weak_order_fn
模拟
- std::invocable<__weak_order_fn, Args...>,
- std::invocable<const __weak_order_fn, Args...>,
- std::invocable<__weak_order_fn&, Args...>,以及
- std::invocable<const __weak_order_fn&, Args...>.
否则,__weak_order_fn
的任何函数调用运算符都不会参与重载解析。
[编辑] IEEE 浮点类型的严格弱序
令 x 和 y 为相同 IEEE 浮点类型的值,并且 weak_order_less(x, y) 为布尔结果,指示 x 是否在 C++ 标准定义的严格弱序中先于 y。
- 如果 x 和 y 都不是 NaN,则当且仅当 x < y 时,weak_order_less(x, y) == true,即所有具有相同浮点值表示形式的值都等效;
- 如果 x 是负 NaN 且 y 不是负 NaN,则 weak_order_less(x, y) == true。
- 如果 x 不是正 NaN 且 y 是正 NaN,则 weak_order_less(x, y) == true。
- 如果 x 和 y 都是符号相同的 NaN,则 (weak_order_less(x, y) || weak_order_less(y, x)) == false,即所有符号相同的 NaN 都是等价的。
[编辑] 示例
本节内容不完整。 原因:没有示例。 |
[编辑] 参见
(C++20) |
支持所有 6 个运算符且不可替换的 3 路比较的结果类型。 (类) |
(C++20) |
执行 3 路比较并产生类型为 std::strong_ordering 的结果。(定制点对象) |
(C++20) |
执行 3 路比较并产生类型为 std::partial_ordering 的结果。(定制点对象) |
(C++20) |
执行 3 路比较并产生类型为 std::weak_ordering 的结果,即使 operator<=> 不可用。(定制点对象) |