future

C++ Core Guidelines: Rules for Templates and Generic Programming

/
I this post I give an introduction to the rules for generic programming in C++. Generic programming is,…
precious 1199183 1920

C++ Core Guidelines: Rules for Constants and Immutability

/
Making objects or methods const has two benefits. First, the compiler will complain when you break the…
RainerGrimmSmall

The new pdf bundle is ready: C++ Core Guidelines – Concurrency and Parallelism

/
I have prepared the pdf bundle. To get it is quite simple. If you subscribe to the newsletter, you…
firefighters 1147795 1280

C++ Core Gudelines: goto considered Evil

/
If you can't throw an exception and can't use final_action (finally) from the guideline support library,…
hero

For Free: Four Vouchers to Win

/
Bartłomiej Filipek, author of the well-known C++-blog: Bartek's coding blog gave me four vouchers…
accident 994009 1280

C++ Core Guidelines: finally in C++

/
To make my point clear, this post is about the exceptional case that you can not throw an exception.…
educative

I’m Proud to Present: Modern C++ Concurrency is available as interactive course

/
Based on my book "Concurrency with Modern C++" educative.io created an interactive course. You can have…
disappointment 3151237 1280

C++ Core Guidelines: Rules about Exception Handling

/
Today's post is about the right way to throw and catch exceptions. This means when you should throw and…