maki 3295891 1280

C++ Core Guidelines: Other Template Rules

/
Today, I write about the few remaining rules to templates. Because a collective name is missing, they…
constexpr

C++ Core Guidelines: Programming at Compile Time with constexpr

/
My mini-series about programming at compile time started with template metaprogramming, continued with…
TypeTraits

C++ Core Guidelines: Programming at Compile Time with Type-Traits (The Second)

/
The type-traits library supports type checks, type comparisons, and type modifications at compile time.…
TypeTraits

C++ Core Guidelines: Programming at Compile Time with the Type-Traits

/
My journey through programming at compile time began in the last posts with template metaprogramming.…
Overview

C++ Core Guidelines: Programming at Compile Time

/
Today, I will continue my introduction to programming at compile time. The last post started with template…
dinosaur 966869 1280

C++ Core Guidelines: Rules for Template Metaprogramming

/
Yes, you read it correctly. Today, I write about template metaprogramming, programming with types and…
theater 311730 1280

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…
hierarchy 35795 1280

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…
hammer 802301 1280

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…
super charged engine 2770374 1280

C++ Core Guidelines: Template Definitions

/
Template definitions deal with guidelines that are specific to a template implementation. This means,…