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

履歴 編集

function template
<flat_set>

std::flat_multiset::operator<=>

synth-three-way-result<value_type>
  operator<=>(const flat_multiset& x,
              const flat_multiset& y); // (1) C++23

概要

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

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

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

効果

計算量

線形時間。

備考

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

#include <flat_set>
#include <iostream>

int main()
{
  std::flat_multiset<int> fs1 = {3, 1, 4};

  std::flat_multiset<int> fs2 = {3, 1};

  std::cout << std::boolalpha;
  std::cout << ((fs1 <=> fs1) == 0) << std::endl;
  std::cout << (fs1 < fs2) << std::endl;
  std::cout << (fs1 <= fs1) << std::endl;
  std::cout << (fs1 > fs2) << std::endl;
  std::cout << (fs2 >= fs1) << std::endl;
}

出力

true
false
true
true
false

バージョン

言語

  • C++23

処理系