GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
std::chrono::time_point::operator++,(3) C++ Standard Libary std::chrono::time_point::operator++,(3)

std::chrono::time_point::operator++, - std::chrono::time_point::operator++,


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_--);


(none)


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


This section is incomplete
Reason: no example


operator++
operator++(int) increments or decrements the tick count
operator-- (public member function of std::chrono::duration<Rep,Period>)
operator--(int)
operator+= modifies the time point by the given duration
operator-= (public member function)
operator+ performs add and subtract operations involving a time point
operator- (function template)
(C++11)

2022.07.31 http://cppreference.com

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.