Defined in header <chrono> | ||
---|---|---|
constexpr std::chrono::day operator+( const std::chrono::day& d, const std::chrono::days& ds ) noexcept; | (1) | (since C++20) |
constexpr std::chrono::day operator+( const std::chrono::days& ds, const std::chrono::day& d ) noexcept; | (2) | (since C++20) |
constexpr std::chrono::day operator-( const std::chrono::day& d, const std::chrono::days& ds ) noexcept; | (3) | (since C++20) |
constexpr std::chrono::days operator-( const std::chrono::day& x, const std::chrono::day& y ) noexcept; | (4) | (since C++20) |
ds.count()
days to d
.ds.count()
days from d
.day
x
and y
.std::chrono::day(unsigned(d) + ds.count())
std::chrono::day(unsigned(d) - ds.count())
std::chrono::days(int(unsigned(x)) - int(unsigned(y)))
For (1-3), if the result would be outside the range [0, 255], the actual stored value is unspecified.
#include <chrono> #include <cassert> int main() { std::chrono::day d {15}; d = d + std::chrono::days(2); assert(d == std::chrono::day(17)); d = d - std::chrono::days(3); assert(d == std::chrono::day(14)); constexpr std::chrono::days ds = std::chrono::day(16) - std::chrono::day(14); static_assert(ds == std::chrono::days(2)); }
increments or decrements the day (public member function) |
|
adds or subtracts a number of days (public member function) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/chrono/day/operator_arith_2