C++20: Basic Chrono Terminology with Time Duration and Time Point
Today, I continue my journey through the basic types with time durations and time points. Time Durations C++14 introduced helper types such as std::chrono::seconds for time durations and corresponding time literals such as 5s. C++20 added new helper types. The following table shows all for completeness. Often the time duration std::chrono::days and the calendar date […]