namespace std::chrono {
constexpr year_month operator+(const year_month& ym, const months& dm) noexcept; // (1) C++20
constexpr year_month operator+(const months& dm, const year_month& ym) noexcept; // (2) C++20
constexpr year_month operator+(const year_month& ym, const years& dy) noexcept; // (3) C++20
constexpr year_month operator+(const years& dy, const year_month& ym) noexcept; // (4) C++20
}
概要
year_month
の加算を行う。
- (1) :
year_month
に月の時間間隔を加算する - (2) : 月の時間間隔に
year_month
を加算する - (3) :
year_month
に年の時間間隔を加算する - (4) : 年の時間間隔に
year_month
を加算する
テンプレートパラメータ制約
戻り値
-
(1) : 以下の式が
true
となるyear_month
オブジェクトz
を返す
z.ok() && z - ym == dm;
-
(2) :
return ym + dm;
-
(3) :
return (ym.year() + dy) / ym.month();
-
(4) :
return ym + dy;
計算量
- (1) :
dm
の値に関してO(1)
例外
投げない
例
#include <cassert>
#include <chrono>
namespace chrono = std::chrono;
using namespace std::chrono_literals;
int main()
{
assert(2020y/3 + chrono::months{1} == 2020y/4);
assert(2020y/3 + chrono::years{1} == 2021y/3);
}
出力
バージョン
言語
- C++20
処理系
- Clang: 8.0 ✅
- GCC: 11.1 ✅
- Visual C++: 2019 Update 3 ❌