std::chrono::weekday::operator+=, std::chrono::weekday::operator-=
来自cppreference.com
                    
                                        
                    
                    
                                                            
                    |   constexpr std::chrono::weekday& operator+=(const std::chrono::days& d) noexcept;  | 
(1) | (C++20 起) | 
|   constexpr std::chrono::weekday& operator-=(const std::chrono::days& d) noexcept;  | 
(2) | (C++20 起) | 
对星期之日值加或减 d.count() ,将结果对 7 取余,规约成范围 [0, 6] 中的整数。
1) 进行 *this = *this + d;
2) 进行 *this = *this - d;
返回值
到修改后的此 weekday 的引用。
注意
调用这些函数之一后,若运算中不出现溢出,则 ok() 始终为 true 。
示例
| 本节未完成 原因:暂无示例  | 
参阅
  自增或自减 weekday  (公开成员函数)  | |
  在 weekday 上进行算术 (函数)  |