namespace std::chrono {
constexpr strong_ordering operator<=>(const year_month& x, const year_month& y) noexcept; // (1) C++20
}
概要
year_month
同士の三方比較を行う。
戻り値
- (1) : 以下と等価:
例外
投げない
備考
- この演算子により、
operator<
、operator<=
、operator>
、operator>=
が使用可能になる
例
出力
バージョン
言語
- C++20
処理系
- Clang: 9.0 ❌
- GCC: 11.1 ✅
- Visual C++: 2019 Update 3 ❌