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

履歴 編集

function
<chrono>

std::chrono::operator/(C++20)

namespace std::chrono {
  constexpr year_month_day_last
    operator/(const month_day_last& mdl, const year& y) noexcept; // (1) C++20
  constexpr year_month_day_last
    operator/(const month_day_last& mdl, int y) noexcept;         // (2) C++20
}

概要

カレンダー要素同士をつなぎ合わせる。

  • (1) : month_day_last型とyear型をつなぎ、年月の最終日の情報をもつ型にまとめる
  • (2) : month_day_last型とint型での年の値をつなぎ、年月の最終日の情報をもつ型にまとめる

戻り値

  • (1) : return y / mdl;
  • (2) : return year{y} / mdl;

例外

投げない

#include <cassert>
#include <chrono>

using namespace std::chrono;

int main()
{
  assert((March/last)/2020y == (year_month_day_last{2020y, March/last}));
  assert((March/last)/2020 == (year_month_day_last{2020y, March/last}));
}

出力

バージョン

言語

  • C++20

処理系