Posts

TimelineCpp20Concepts

Check Types with Concepts – The Motivation

/
static_assert allows you to check at compile time if a type T fulfills the Concept: static_assert(Concept<T>).   Before…
stork 1324371 1280

C++ Core Guidelines: Rules for Copy and Move

/
The rules for copy and move are pretty obvious. But before I describe them I have to write about the…
RuleOfZeroFiveSix

C++ Core Guidelines: The Rule of Zero, Five, or Six

/
This post is about the rule of zero, five, or maybe six. I will also show the difference between copy…