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

履歴 編集

function template
<set>

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

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

概要

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

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

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

効果

計算量

線形時間

備考

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

#include <cassert>
#include <set>

int main()
{
  std::set<int> s1, s2;
  s1.insert(10);
  s1.insert(20);
  s1.insert(30);
  s2 = s1;

  assert((s1 <=> s2) == 0);

  s2.insert(40);

  assert((s1 <=> s2) != 0);
}

出力

バージョン

言語

  • C++20

処理系

参照