- chrono[meta header]
- std::chrono[meta namespace]
- function[meta id-type]
- cpp20[meta cpp]
namespace std::chrono {
constexpr strong_ordering
operator<=>(const year_month_day_last& x,
const year_month_day_last& y) noexcept; // (1) C++20
}
year_month_day_last
同士の三方比較を行う。
- (1) : 以下と等価:
if (auto c = x.year() <=> y.year(); c != 0) return c;
return x.month_day_last() <=> y.month_day_last();
- year()[link year.md]
- month_day_last()[link month_day_last.md]
投げない
- この演算子により、
operator<
、operator<=
、operator>
、operator>=
が使用可能になる
#include <cassert>
#include <chrono>
using std::chrono::last;
using namespace std::chrono_literals;
int main()
{
assert((2020y/3/last <=> 2020y/3/last) == 0);
assert(2020y/2/last < 2020y/3/last);
assert(2020y/2/last <= 2020y/3/last);
assert(2020y/3/last > 2020y/2/last);
assert(2020y/3/last >= 2020y/2/last);
}
- 2020y[link /reference/chrono/year/op_y.md]
- last[link /reference/chrono/last_spec.md]
- C++20
- Clang: 9.0 [mark noimpl]
- GCC: 11.1 [mark verified]
- Visual C++: 2019 Update 3 [mark noimpl]