Time of Day
Get introduced to the time library of C++20.
We'll cover the following...
🔑 Lack of compiler support
At the end of 2020, no C++ compiler supports the chrono extensions so far. Thanks to the prototype library date from Howard Hinnant, which is essentially a superset of the extended time functionality in C++20, you can experiment with it. The library is hosted on GitHub. There are various ways to use the date ...