Clock is a lightweight class for measuring time.
Its provides the most precise time that the underlying OS can achieve (generally microseconds or nanoseconds). It also ensures monotonicity, which means that the returned time can never go backward, even if the system time is changed.
Utility class that measures the elapsed time.
auto clock = Clock(); ... Time duration1 = clock.getElapsedTime(); ... Time duration2 = clock.restart();
$(PARA The Time value returned by the clock can then be converted to a number of seconds, milliseconds or even microseconds.)
$(TIME_LINK)
See Source File
Clock is a lightweight class for measuring time.
Its provides the most precise time that the underlying OS can achieve (generally microseconds or nanoseconds). It also ensures monotonicity, which means that the returned time can never go backward, even if the system time is changed.