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;
例外
投げない
例
出力
バージョン
言語
- C++20
処理系
- Clang: 8.0 ✅
- GCC: 11.1 ✅
- Visual C++: 2019 Update 3 ❌