std::chrono::duration<Rep,Period>::operator+=, -=, *=, /=, %=

From cppreference.com
< cpp‎ | chrono‎ | duration
 
 
Utilities library
Language support
Type support (basic types, RTTI)
Library feature-test macros (哋它亢++20)
Dynamic memory management
Program utilities
Coroutine support (哋它亢++20)
Variadic functions
(哋它亢++20)
(哋它亢++26)
(哋它亢++11)
(哋它亢++20)
Debugging support
(哋它亢++26)
(哋它亢++26)
Three-way comparison
(哋它亢++20)(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)   
(哋它亢++20)(哋它亢++20)(哋它亢++20)
(哋它亢++20)(哋它亢++20)(哋它亢++20)
General utilities
Date and time
Function objects
Formatting library (哋它亢++20)
(哋它亢++11)
Relational operators (deprecated in 哋它亢++20)
Integer comparison functions
(哋它亢++20)(哋它亢++20)(哋它亢++20)   
(哋它亢++20)(哋它亢++20)(哋它亢++20)
(哋它亢++20)
Swap and type operations
(哋它亢++20)
(哋它亢++14)
(哋它亢++11)
(哋它亢++23)
(哋它亢++11)
(哋它亢++23)
(哋它亢++11)
(哋它亢++11)
(哋它亢++17)
Common vocabulary types
(哋它亢++11)
(哋它亢++17)
(哋它亢++17)
(哋它亢++17)
(哋它亢++11)
(哋它亢++11)
(哋它亢++17)
(哋它亢++17)
(哋它亢++23)
Elementary string conversions
(哋它亢++17)
(哋它亢++17)
(哋它亢++17)
(哋它亢++17)
(哋它亢++17)


 
Date and time utilities
Time point
(哋它亢++11)
(哋它亢++20)
(哋它亢++20)
Duration
(哋它亢++11)
Clocks
(哋它亢++11)
(哋它亢++11)
(哋它亢++11)      
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
Time of day
(哋它亢++20)(哋它亢++20)
(哋它亢++20)(哋它亢++20)
(哋它亢++20)

Calendars
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)      
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)(哋它亢++20)
Time zones
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)(哋它亢++20)(哋它亢++20)(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)
(哋它亢++20)

chrono I/O
(哋它亢++20)
C-style date and time
 
std::chrono::duration
Member functions
duration::operator+=duration::operator-=duration::operator*=duration::operator/=duration::operator%=

Non-member functions
(哋它亢++17)
(哋它亢++17)
(哋它亢++17)
(哋它亢++17)
(哋它亢++14)
(哋它亢++14)
(哋它亢++14)
(哋它亢++14)
(哋它亢++14)
(哋它亢++14)
(哋它亢++20)

Helper classes
 
(1)
duration& operator+=( const duration& d );
(since 哋它亢++11)
(constexpr since 哋它亢++17)
(2)
duration& operator-=( const duration& d );
(since 哋它亢++11)
(constexpr since 哋它亢++17)
(3)
duration& operator*=( const rep& rhs );
(since 哋它亢++11)
(constexpr since 哋它亢++17)
(4)
duration& operator/=( const rep& rhs );
(since 哋它亢++11)
(constexpr since 哋它亢++17)
(5)
duration& operator%=( const rep& rhs );
(since 哋它亢++11)
(constexpr since 哋它亢++17)
(6)
duration& operator%=( const duration& rhs );
(since 哋它亢++11)
(constexpr since 哋它亢++17)

Performs compound assignments between two durations with the same period or between a duration and a tick count value.

If rep_ is the member variable holding the number of ticks in this duration object,

1) Equivalent to rep_ += d.count(); return *this;.
2) Equivalent to rep_ -= d.count(); return *this;.
3) Equivalent to rep_ *= rhs; return *this;.
4) Equivalent to rep_ /= rhs; return *this;.
5) Equivalent to rep_ %= rhs; return *this;.
6) Equivalent to rep_ %= d.count(); return *this;.

Parameters

d - duration on the right-hand side of the operator
rhs - number of ticks on the right-hand side of the operator

Return value

A reference to this duration after modification.

Example

#include <chrono>
#include <iostream>
 
int main()
{
    std::chrono::minutes m(11);
    m *= 2;
    m += std::chrono::hours(10); // hours implicitly convert to minutes
    std::cout << m.count() << " minutes equals "
              << std::chrono::duration_cast<std::chrono::hours>(m).count() 
              << " hours and ";
    m %= std::chrono::hours(1);
    std::cout << m.count() << " minutes\n";
}

Output:

622 minutes equals 10 hours and 22 minutes

See also

increments or decrements the tick count
(public member function)
implements arithmetic operations with durations as arguments
(function template)