There is a std::chrono::high_resolution_clock, but no low_resolution_clock

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

Click here to read the article