synth-three-way-result<value_type>
operator<=>(const flat_map& x,
const flat_map& y); // (1) C++23
概要
flat_map
オブジェクトの三方比較を行う。
テンプレートパラメータ制約
- 型 (
const
)value_type
の値に対してoperator<=>
が定義されるか、型 (const
)value_type
の値に対してoperator<
が定義され全順序をもつこと
効果
return lexicographical_compare_three_way(
x.begin(), x.end(),
y.begin(), y.end(),
synth-three-way);
計算量
線形時間
備考
- この演算子により、以下の演算子が使用可能になる:
operator<
operator<=
operator>
operator>=
例
#include <iostream>
#include <flat_map>
int main()
{
std::flat_map<int, char> fm1 = {
{3, 'a'},
{1, 'b'},
{4, 'c'}
};
std::flat_map<int, char> fm2 = {
{3, 'a'},
{1, 'b'},
};
std::cout << std::boolalpha;
std::cout << ((fm1 <=> fm1) == 0) << std::endl;
std::cout << (fm1 < fm2) << std::endl;
std::cout << (fm1 <= fm1) << std::endl;
std::cout << (fm1 > fm2) << std::endl;
std::cout << (fm2 >= fm1) << std::endl;
}
出力
true
false
true
true
false
バージョン
言語
- C++23
処理系
- Clang: ??
- GCC: ??
- Visual C++: ??