TimelineCpp20CoreLanguage

Feature Testing with C++20

/
When your program's compilation broke with a brand-new C++20 feature, you often end with a few questions:…
TimelineCpp20CoreLanguage

Safe Comparisons of Integrals with C++20

/
 When you compare signed and unsigned integers, you may not get the result you expect. Thanks to…
TimelineCpp20CoreLanguage

Calendar and Time-Zones in C++20: Calendar Dates

/
A new type of the chrono extension in C++20 is a calendar date. C++20 offers various ways to create a…
TimelineCpp20CoreLanguage

Calendar and Time-Zones in C++20: Time of Day

/
With C++20, the chrono library from C++11 receives essential additions. The most prominent ones are calendar…
TimelineCpp20CoreLanguage

Calendar and Time-Zones in C++20: Time-Zones

/
This post concludes my introduction to the chrono extension in C++20. Today I present the time-zones…
TimelineCpp20CoreLanguage

More and More Utilities in C++20

/
Today, I present a few utilities for calculating the midpoint of two values, checking if a std::string…
TimelineCpp20CoreLanguage

Calendar and Time-Zones in C++20: Handling Calendar Dates

/
In my last post, "Calendar and Time Zone in C++20: Calendar Dates", I presented the new calendar-related…
TimelineCpp20CoreLanguage

C++20: Extend std::format for User-Defined Types

/
Peter Gottschling presented in his last post "std::format in C++20" the basics of the new formatting…
TimelineCpp20CoreLanguage

std::format in C++20

/
Today, I'm happy to present Peter Gottschling's guest post to the new formatting library in C++20: std::format.…
TimelineCpp20CoreLanguage

More Convenience Functions for Containers with C++20

/
Removing elements from a container or asking if an associative container has a specific key is too complicated.…