Posts

TimelineCpp20CoreLanguage

volatile and Other Small Improvements in C++20

/
Today, I complete my tour through the C++20 core language features with a few small improvements. One…
hand 162127 640

C++ Core Guidelines: Rules for Enumerations

/
The section to enumerations has eight rules. Since C++11, we have scoped enumerations which overcome…
enumClassic

Strongly-Typed Enums

/
Enumerations are a convenient way to define integer constants with names. These integer constants are…