I know, that to shorten class names I can do the following:
using Time = std::chrono::time_point<std::chrono::system_clock>;
using Clock = std::chrono::system_clock;
But how to properly reduce length of the next line?
/*using Ms = */ std::chrono::duration_cast<std::chrono::milliseconds>
The target piece of code:
Time start = Clock::now();
// something
Time end = Clock::now();
std::cout << Ms(end - start).count() << std::endl;