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

履歴 編集

function template
<vector>

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

namespace std {
  template <class T, class Allocator>
  constexpr synth-three-way-result<T>
    operator<=>(const vector<T, Allocator>& x,
                const vector<T, Allocator>& y); // (1) C++20
}

概要

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

テンプレートパラメータ制約

  • 型 (const) T の値に対してoperator<=>が定義されるか、型 (const) T の値に対してoperator<が定義され全順序をもつこと

効果

計算量

線形時間

備考

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

#include <cassert>
#include <vector>

int main()
{
  std::vector<int> v1 = {1, 2, 3};
  std::vector<int> v2 = {1, 2, 3};
  std::vector<int> v3 = {1, 2, 3, 4};

  assert((v1 <=> v2) == 0);
  assert((v1 <=> v3) != 0);
}

出力

バージョン

言語

  • C++20

処理系

参照