Logo

Blog


MONTH: November 2024

C++ Insights

C++ Insights Episode 56: Understanding the magic behind C++17's structured bindings

I published a new C++ insights episode: Understanding the magic behind C++17's structured bindings. [...]
C++

Why is C++23 called 23?

First, if you haven't heard the good news, C++23 was finally published by ISO. Looking at how I (and others) name this C++ standard raises the question: Why call it 23 when ISO [...]
C++

unique_ptr and the pointer to implementation idiom

Last time, I wrote about unique_ptr and PImpl, demonstrating why you can't use a unique_ptr for PImpl. This time, I'd like to show you how you can make unique_ptr work with PImpl. [...]