std::compare_partial_order_fallback
在标头 <compare> 定义
|
||
inline namespace /* unspecified */ { inline constexpr /* unspecified */ |
(C++20 起) | |
调用签名 |
||
template< class T, class U > requires /* see below */ |
||
进行 t
与 u
上的三路比较并产生 std::partial_ordering 类型值,即使运算符 <=>
不可用。
设 t
与 u
为表达式而 T
与 U
分别代表 decltype((t)) 与 decltype((u)) ,则 std::compare_partial_order_fallback(t, u) 表达式等价于:
- 若 std::is_same_v<std::decay_t<T>, std::decay_t<U>> 为 true :
- std::partial_order(t, u) ,若它为良构表达式;
- 否则,为
t == u ? std::partial_ordering::equivalent : t < u ? std::partial_ordering::less : u < t ? std::partial_ordering::greater : std::partial_ordering::unordered
- 若 decltype(t == u)、 decltype(t < u) 与 decltype(u < t) 均良构并实现 boolean-testable ,除了只求值
t
与u
一次。
- 若 decltype(t == u)、 decltype(t < u) 与 decltype(u < t) 均良构并实现 boolean-testable ,除了只求值
- 所有其他情况下, std::compare_partial_order_fallback(t, u) 为非良构,这能在出现于模板实例化的立即语境时导致替换失败。
表达式等价
表达式 e 表达式等价于表达式 f ,若 e 与 f 拥有相同效果,均为潜在抛出或均非潜在抛出(即 noexcept(e) == noexcept(f) ),且均为常量子表达式或均非常量子表达式。
定制点对象
名字 std::compare_partial_order_fallback
代表一个定制点对象,它是字面 semiregular
类类型的 const 函数对象。为说明目的,以 __compare_partial_order_fallback_fn
表示其类型的 cv 无限定版本。
__compare_partial_order_fallback_fn
的所有实例均相等。在相同参数上调用类型 __compare_partial_order_fallback_fn
的不同实例的效果是等价的,无关乎指代该实例的表达式是左值还是右值,以及是否为 const 限定(然而不要求 volatile 限定的实例可调用)。从而能自由地复制 std::compare_partial_order_fallback
并且能彼此替代地使用其副本。
给定类型集合 Args...
,若 std::declval<Args>()... 满足上面对于 std::compare_partial_order_fallback
的参数要求,则 __compare_partial_order_fallback_fn
实现
- std::invocable<__compare_partial_order_fallback_fn, Args...>、
- std::invocable<const __compare_partial_order_fallback_fn, Args...>、
- std::invocable<__compare_partial_order_fallback_fn&, Args...> 及
- std::invocable<const __compare_partial_order_fallback_fn&, Args...> 。
否则, __compare_partial_order_fallback_fn
的函数调用运算符不参与重载决议。
示例
本节未完成 原因:暂无示例 |
缺陷报告
下列更改行为的缺陷报告追溯地应用于以前出版的 C++ 标准。
缺陷报告 | 应用于 | 出版时的行为 | 正确行为 |
---|---|---|---|
P2167R3 | C++20 | 后备机制仅要求返回类型可隐式转换为 bool | 加强了约束 |
参阅
(C++20) |
进行三路比较并产生 std::partial_ordering 类型结果 (定制点对象) |