C++ named requirements: Clock (since C++11)

The Clock requirements describe a bundle consisting of a std::chrono::duration, a std::chrono::time_point, and a function now() to get the current time_point. The origin of the clock’s time_point is referred to as the clock’s epoch.

# See also