
My Next Mentoring Program is “Design Patterns and Architectural Patterns with C++”
/
0 Comments
This Sunday, the poll for my next mentoring program ended. There is a unique winner: Design Patterns…

Improved Iterators with Ranges
There are more reasons to prefer ranges library above the classical Standard Template Library. The ranges…

My Next Mentoring Program
I will start my next mentoring program in 2023, right after the ending of the current mentoring program,…

Sentinels and Concepts with Ranges Algorithms
The ranges library in C++20 supports sentinels. Sentinels stand for the end of a range and can be regarded…

Projections with Ranges
The algorithms of the ranges library are lazy, can work directly on the container, and can easily be…

The Ranges Library in C++20: More Details
Working with the Standard Template Library (STL) is much more comfortable and powerful thanks to the…

Check Types with Concepts
Concepts are a powerful and elegant tool to check at compile time if a type fulfills. Thanks to static_assert,…

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…

Using Requires Expression in C++20 as a Standalone Feature
In my last post "Defining Concepts with Requires Expressions", I exemplified how you can use requires…

Defining Concepts with Requires Expressions
In my last post, "Define Concepts", I defined the concepts Integral, SignedIntegral, and UnsigendIntegral…