The C++ standard provides a std::chrono::high_resolution_clock which provides the implementation’s clock with the smallest tick period. This gives you the best resolution available to the implementation. But what if you don’t need the best resolution available to the implementation? For examp
There is a
