std::chrono::time_point<Clock,Duration>::operator+=, operator-=
Min standard notice:
Modifies the time point by the given duration.
# Declarations
time_point& operator+=( const duration& d );
(since C++11) (constexpr since C++17)
time_point& operator-=( const duration& d );
(since C++11) (constexpr since C++17)
# Parameters
d: a time offset to apply
# Return value
*this
# Example
This section is incompleteReason: no example