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

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

# Declarations

constexpr time_point& operator++();

(since C++20)

constexpr time_point operator++( int );

(since C++20)

constexpr time_point& operator--();

(since C++20)

constexpr time_point operator--( int );

(since C++20)

# Example

This section is incompleteReason: no example

# See also