C++ 参考手册

位置:首页 > > std::compare_strong_order_fallback

定义于头文件 <compare>
inline namespace /* unspecified */ {

    inline constexpr /* unspecified */
        compare_strong_order_fallback = /* unspecified */;

}
(C++20 起)
调用签名
template< class T, class U >

    requires /* see below */
constexpr std::strong_ordering

    compare_strong_order_fallback(T&& t, U&& u) noexcept(/* see below */);

进行 tu 上的三路比较并产生 std::strong_ordering 类型结果,即使运算符 <=> 不可用。

tu 为表达式且 TU 分别代表 decltype((t))decltype((u)) ,则 std::compare_strong_order_fallback(t, u) 表达式等价于:

  • std::is_same_v<std::decay_t<T>, std::decay_t<U>> == true
    • 则该表达式表达式等价于 std::strong_order(t, u) ,若它为良构;
    • 否则,若 t == ut < u 均为良构且可转换为 bool ,则该表达式表达式等价于:
t == u ? std::strong_ordering::equal :
t < u  ? std::strong_ordering::less :
         std::strong_ordering::greater
除了仅求值 tu 一次。
  • 所有其他情况下, std::compare_strong_order_fallback(t, u) 为非良构。

表达式等价

表达式 e 表达式等价于表达式 f ,若 ef 拥有相同效果,均为潜在抛出或均非潜在抛出(即 noexcept(e) == noexcept(f) ),且均为常量子表达式或均非常量子表达式。

定制点对象

名字 std::compare_strong_order_fallback 代表一个定制点对象,它是字面 semiregular 类类型(为说明目的以 compare_strong_order_fallback_ftor 表示)的 const 函数对象compare_strong_order_fallback_ftor 的所有实例均相等。从而能自由地复制 std::compare_strong_order_fallback ,且能交替使用其副本。

给定类型集合 Args... ,若 std::declval<Args>()... 满足上面对于 std::compare_strong_order_fallback 的参数要求,则 compare_strong_order_fallback_ftor 将满足 std::invocable<const compare_strong_order_fallback_ftor&, Args...> 。否则, compare_strong_order_fallback_ftor 的函数调用运算符不参与重载决议。

示例

本节未完成
原因:暂无示例

参阅

进行三路比较并产生 std::strong_ordering 类型结果
(定制点对象)