namespace std {
template <class T, class Container>
compare_three_way_result_t<Container>
operator<=>(const queue<T, Container>& x,
const queue<T, Container>& y); // (1) C++20
}
概要
queue
の三方比較を行う
戻り値
return x.c <=> y.c;
例
出力
バージョン
言語
- C++20
処理系
- Clang:
- GCC: 10 ✅
- Visual C++: ??
参照
- P1614R2 The Mothership has Landed
- C++20での三方比較演算子の追加と、関連する演算子の自動導出