Logo

Blog


C++

Under the covers of C++ lambdas - Part 3: Generic lambdas

In this post, we are continuing to explore lambdas and comparing them to function objects. In the previous posts, Under the covers of C++ lambdas - Part 1: The static invoker, we [...]
Publications

iX Article: always false

An article I wrote for the German iX magazine "always false" is available in issue 2020/12. It is available as a printed edition as well as online. This is part of a series. [...]
C++

Under the covers of C++ lambdas - Part 2: Captures, captures, captures

In this post, we are continuing to explore lambdas and comparing them to function objects. In the previous post, Under the covers of C++ lambdas - Part 1: The static invoker, we [...]
C++

Under the covers of C++ lambdas - Part 1: The static invoker

This post is the start of a three-part series about lambdas. The focus is on how they are modeled internally. We will compare lambdas with function objects to see whether we as [...]
Conference

CppCon B2B Talk C++ Templates - Videos are out

The videos of my two Back to Basic talks at CppCon 2020 are available on Youtube: [...]
C++

CppCon B2B Talk C++ Templates - Questions and Answers

This post tries to answer some of the questions posted during my two talks at CppCon 2020: [...]
Publications

iX Article: Auto as NTTP

An article I wrote for the German iX magazine "Auto as NTTP" is available in issue 2020/9. It is available as a printed edition as well as online. This is part of a series. Expect [...]
C++20

C++20 Concepts: Subsumption rules

In episode 231 of C++ Weekly Multiple Destructors in C++20?! How and Why Jason told us about an optional like class with two destructors. Thanks to Concepts, this is possible in [...]
Training

Work with me at one of the upcoming events

In my June post Public appearances 2020 I announced a couple events at which I will speak or give a workshop. We are approaching some of these events and for some there are a few [...]
C++20

C++20 Concepts: Testing constrained functions

In my last month post How C++20 Concepts can simplify your code I introduced the different kind of a requires-clause, part of C++20s Concepts. Concepts and the requires-clause [...]