C++ Core Guidelines: Programming at Compile Time with the Type-Traits
/
0 Comments
My journey through programming at compile time began in the last posts with template metaprogramming.…

C++ Core Guidelines: Programming at Compile Time
Today, I will continue my introduction to programming at compile time. The last post started with template…

C++ Core Guidelines: Rules for Template Metaprogramming
Yes, you read it correctly. Today, I write about template metaprogramming, programming with types and…

CppDepend – A Review
In my concurrency class, I use more than 60 programs. Most of the programs consist of a single source…

C++ Core Guidelines: Rules for Variadic Templates
Variadic templates are a typical feature of C++: from the user's perspective, they are easy to use, but…

C++ Core Guidelines: Rules for Templates and Hierarchies
Due to the C++ core guidelines, "Templates are the backbone of C++’s support for generic programming…

C++ Core Guidelines: Ordering of User-Defined Types
My post for today is just loosely coupled to the rules of the C++ core guidelines because they do provide…

C++ Core Guidelines: Template Definitions
Template definitions deal with guidelines that are specific to a template implementation. This means,…

C++ Core Guidelines: Surprises with Argument-Dependent Lookup
There is, in particular, one rule left to template interfaces which are quite interesting: T.47: Avoid…

C++ Core Guidelines: Regular and SemiRegular Types
The topic for today is quite important when you create your type: Regular and SemiRegular types.
Here…