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

履歴 編集

function
<chrono>

std::chrono::year::operator-=(C++20)

constexpr year& operator-=(const years& y) noexcept; // (1) C++20

概要

yearの値に対して減算の複合代入を行う。

パラメータの型が、本クラスであるyearではなく、年単位の時間間隔を表すyearsであることに注意。

効果

  • (1) : *this = *this - y

戻り値

  • (1) : *this

例外

投げない

#include <cassert>
#include <chrono>

namespace chrono = std::chrono;

int main()
{
  chrono::year y{2020};

  y -= chrono::years{3};
  assert(static_cast<int>(y) == 2017);
}

出力

バージョン

言語

  • C++20

処理系

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