C++ Core Guidelines: Source Files
/
0 Comments
The organization of source files is a topic quite seldom addressed in C++. With C++20, we will get modules,…
C++ Insights – Lambdas
Honestly, many programmers in my classes have issues with the syntactic sugar of lambdas. Desugaring…
C++ Insights – Variadic Templates
Variadic templates are a C++ feature that looks quite magic the first time you see them. Thanks to C++…
C++ Insights – Template Instantiation
Today's post from Andreas is about template instantiation. C++ Insights helps you a lot to get a deeper…
C++ Insights – Type Deduction
Andreas Fertigs story with C++ Insights goes on. This weeks post is about type deduction with auto and…
Which pdf bundle should I provide? Make your choice!
Now, it's time to choose the next pdf bundle? You will get all posts, all source files, and a cmake file…
C++ Insights – Implicit Conversions
I'm totally happy to announce that this post starts a series of posts to C++ Insights. C++ Insights is…
C++ Core Guidelines: Mixing C with C++
Due to the same history of C and C++, both languages are closely related. Because neither of them is…
Types-, Non-Types, and Templates as Template Parameters
I assume you saw the additional keywords typename or template used before a name in a template. Me too.…
Templates: Misconceptions and Surprises
I often teach the basics of templates. Templates are special. Therefore, I encounter many misconceptions…