Logo

Blog


C++20

How C++20 Concepts can simplify your code

Today I like to talk about C++20's Concepts and how they help you simplify your code. Plus, make it more correct. [...]
Publications

iX Article: C++-Tricks - Scoped Enums in C++

An article I wrote for the German iX magazin "Scoped Enums in C++" is available in the issue 7/2020. It is available as a printed edition as well as online. This is part of a [...]
Training

Public appearances 2020

This post would under normal circumstanced be late, but with the situation in 2020 there is no certainty. [...]
C++ Insights

Article about C++ Insights in iX magazine

The German iX magazine published an article by Detlef Wilkening: Nativen Code mit C++ Insights anzeigen lassen in issue 6/2020. You can purchase either just this article or the [...]
C++20

C++20: Inside of a spaceship

With C++20 writing classes with comparison operators becomes much easier. Herb Sutter’s example from P0515 is CIString which is a case-insensitive string class wrapper. It needs [...]
C++ Insights

C++ Insights is on YouTube

Today is the day. I briefly announced in my C++ Insights updates post that I plan to bring short videos about C++ Insights to YouTube. Today the first episode aired: C++ Insights [...]
Training

Live virtual training

Since the world was hit by the COVID-19 virus a lot, if not everything, has changed. Among these things are live training classes I usually teach. Due to the risk of an infection [...]
Publications

iX Article: C++-Tricks - Effizienterer Code mit Fold Expressions published

An article I wrote for the German iX magazin "C++-Tricks - Effizienterer Code mit Fold Expressions" is available in the issue 4/2020. It is available as a printed edition as well [...]
C++ Insights

C++ Insights updates

Last week, I pushed an update to the web-part of C++ Insights. I kinda felt like a web-developer for some time. I now know, that there is CSS grid layouts which seems the superior [...]
C++

Use named lambdas or pass them directly

During the Q&A part of my talk at code::dive Adam Badura asked the question whether passing a lambda directly to a function using it has some performance impact compared to an [...]