just::thread Complete C++ Standard Thread Library by Just Software Solutions

Documentation Home

Increment the internal count and return the value of *this prior to the increment.

duration operator++(int);

Effects:

duration temp(*this);
++(*this);
return temp;

Header

#include <chrono>

See Also