Type Erasure in C++: A Polymorphic Type
In a previews post, I described the type erasures provided by the STL. Most of the time, they are not the best suitable options or the options people consider if you mention type erasures.1 The p...
In a previews post, I described the type erasures provided by the STL. Most of the time, they are not the best suitable options or the options people consider if you mention type erasures.1 The p...
I needed to implement a type list three times today. On three different occurrences, I needed to implement it in compiler explorer to show how to handle operations on variadic template parameters...
We needed to implement a dynamic message dispatching at work some weeks ago. We had different kinds of messages, which we needed to store in a queue and dispatch to systems. To store the messages...