This documentation is archived and is not being maintained.

steady_clock Class

Represents a steady clock.

class steady_clock : public system_clock;

A clock is monotonic if the value that is returned by a first call to now() is always less than or equal to the value that is returned by a subsequent call to now().

A clock is steady if it is monotonic and if the time between clock ticks is constant.

Name

Description

system_clock::is_monotonic

Holds true. A steady_clock is monotonic.

system_clock::is_steady

Holds true. A steady_clock is steady.

Header: chrono

Namespace: std::chrono

Show: