Constexpr function parametersHi C++ Fans! Last week I asked you how you would pass a contexper parameter to a function. The problem is that most parameters to a...
C++23's std::mdspan Today I would like to introduce C++23's std::mdspan; this feature will let us use multi-dimensional spans, e.g., views and slices of our...
<bit> headerHi C++ Fans. C++20 introduced many exciting and useful changes to C++. In this post, I will show how to calculate the size of a bit...
constexpr polymorphismConstexpr polymorphism C++20 introduced many new and exciting features. One of those features is "constexpr polymorphism" Pre-C++20, we...