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

履歴 編集

function
<chrono>

std::chrono::operator<=>(C++20)

namespace std::chrono {
  constexpr strong_ordering operator<=>(const year_month_day& x, const year_month_day& y) noexcept; // (1) C++20
}

概要

year_month_day同士の三方比較を行う。

戻り値

  • (1) : 以下と等価:

if (auto c = x.year() <=> y.year(); c != 0) return c;
if (auto c = x.month() <=> y.month(); c != 0) return c;
return x.day() <=> y.day();

例外

投げない

備考

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

#include <cassert>
#include <chrono>

using namespace std::chrono_literals;

int main()
{
  assert((2020y/3/1 <=> 2020y/3/1) == 0);

  assert(2020y/3/1 < 2020y/3/2);
  assert(2020y/3/1 <= 2020y/3/2);

  assert(2020y/3/2 > 2020y/3/1);
  assert(2020y/3/2 >= 2020y/3/1);
}

出力

バージョン

言語

  • C++20

処理系

  • Clang: (9.0時点で実装なし)
  • GCC: (9.2時点で実装なし)
  • Visual C++: (2019 Update 3時点で実装なし)