constexpr day& operator-=(const days& m) noexcept; // (1) C++20
概要
day
の値に対して減算の複合代入を行う。
パラメータの型が、本クラスであるday
ではなく、日単位の時間間隔を表すdays
であることに注意。
効果
- (1) :
*this = *this - d
戻り値
- (1) :
*this
例外
投げない
例
#include <cassert>
#include <chrono>
namespace chrono = std::chrono;
int main()
{
chrono::day d{31};
d -= chrono::days{2};
assert(static_cast<unsigned int>(d) == 29);
}
出力
バージョン
言語
- C++20
処理系
- Clang: 8.0 ✅
- GCC: 9.2 ❌
- Visual C++: 2019 Update 3 ❌