Logo

Blog


Training

CppCon Academy Workshop

I'm thrilled to let you know that I'll give the workshop "Modern C++: When Efficiency Matters" as part of the CppCon Academy in Aurora, CO. [...]
C++

Understanding the inner workings of C++ smart pointers - The unique_ptr with custom deleter

Let's continue where I left off last time. You've seen a simple implementation of a unique_ptr in Understanding the inner workings of C++ smart pointers - The unique_ptr. Now, [...]
C++ Insights

C++ Insights Episode 52: The Power of std::is_constant_evaluated(): Elevating Your Constexpr Code

I published a new C++ insights episode: The Power of std::is_constant_evaluated(): Elevating Your Constexpr Code. [...]
C++

Understanding the inner workings of C++ smart pointers - The unique_ptr

Have you always wondered how the two smart pointers unique_ptr and shared_ptr work internally? Then, this series might give you a better understanding. [...]
C++ Insights

C++ Insights Episode 51: The magic of C++20s std::source_location

I published a new C++ insights episode: The magic of C++20s std::source_location. [...]
C++

Calling a C++ member function with a null object

In today's post, I'll show you what happens if you call a member function on a null object. [...]
Conference

C++Online 2024 recording of my talk "C++20’s Coroutines for Beginners" is available

I'm pleased to announce that the recording of my talk at C++Online C++20’s Coroutines for Beginners of my presentation is available YouTube: [...]
C++ Insights

C++ Insights Episode 50: What are the static operators [] and () in C++26

I published a new C++ insights episode: What are the static operators [] and () in C++26. [...]
C++ Insights

Happy 6th anniversary C++ Insights

This year, we celebrate the 6th anniversary of C++ Insights! [...]
C++

Exploring the impact of top-level cv-qualifiers on type-deduction

In today's post, I will continue where I left off with last month's post Understanding the role of cv-qualifiers in function parameters. This time, I will focus on type deduction. [...]