Namespaces
Variants
Views
Actions

std::chrono::time_point<Clock,Duration>::operator++, std::chrono::time_point<Clock,Duration>::operator--

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

 
 
 
constexpr time_point& operator++();
(1) (since C++20)
constexpr time_point operator++( int );
(2) (since C++20)
constexpr time_point& operator--();
(3) (since C++20)
constexpr time_point operator--( int );
(4) (since C++20)

Modifies the point in time *this represents by one tick of the duration.

If d_ is a member variable holding the duration (i.e., time since epoch) of this time_point object,

1) Equivalent to ++d_; return *this;.
2) Equivalent to return time_point(d_++).
3) Equivalent to --d_; return *this;.
4) Equivalent to return time_point(d_--);.

Contents

[edit] Parameters

(none)

[edit] Return value

1,3) A reference to this time_point after modification.
2,4) A copy of the time_point made before modification.

[edit] Example

[edit] See also

increments or decrements the tick count
(public member function of std::chrono::duration<Rep,Period>) [edit]
modifies the time point by the given duration
(public member function) [edit]
performs add and subtract operations involving a time point
(function template) [edit]