namespace std::chrono {
constexpr year_month_weekday
operator+(const year_month_weekday_last& ymwdl,
const months& dm) noexcept; // (1) C++20
constexpr year_month_weekday
operator+(const months& dm,
const year_month_weekday_last& ymwdl) noexcept; // (2) C++20
constexpr year_month_weekday
operator+(const year_month_weekday_last& ymwdl,
const years& dy) noexcept; // (3) C++20
constexpr year_month_weekday
operator+(const years& dy,
const year_month_weekday_last& ymwdl) noexcept; // (4) C++20
}
概要
year_month_weekday_last
の加算を行う。
- (1) :
year_month_weekday_last
に月の時間間隔を加算する - (2) : 月の時間間隔に
year_month_weekday_last
を加算する - (3) :
year_month_weekday_last
に年の時間間隔を加算する - (4) : 年の時間間隔に
year_month_weekday_last
を加算する
テンプレートパラメータ制約
戻り値
- (1) :
return (ymwdl.year() / ymwdl.month() + dm) / ymwdl.weekday_last();
- (2) :
return ymwdl + dm;
- (3) :
return (ymwdl.year() + dy) / ymwdl.month() / ymwdl.weekday_last();
- (4) :
return ymwdl + dy;
例外
投げない
例
出力
バージョン
言語
- C++20
処理系
- Clang: 8.0 ✅
- GCC: 11.1 ✅
- Visual C++: 2019 Update 3 ❌