最終更新日時(UTC):
が更新

履歴 編集

function
<system_error>

std::operator<=>(C++20)

namespace std {
  strong_ordering
    operator<=>(const error_code& lhs,
                const error_code& rhs) noexcept; // (1) C++20
}

概要

error_codeオブジェクトの三方比較を行う。

効果

以下と等価:

if (auto c = lhs.category() <=> rhs.category(); c != 0)
  return c;
return lhs.value() <=> rhs.value();

例外

投げない

備考

  • この演算子により、以下の演算子が使用可能になる (C++20):
    • operator<
    • operator<=
    • operator>
    • operator>=

出力

バージョン

言語

  • C++20

処理系

参照