Posts

Polymorphic Allocators in C++17

This post starts a miniseries about an almost unknown feature in C++17: polymorphic allocators. I often…

Memory Pool Allocators by Jonathan Müller

/
After I have written a few posts about memory management in C++, I'm very glad to present Jonathan Müller,…
allocator

Memory Management with std::allocator

/
What is common between all containers of the Standard Template Library? They have a type parameter Allocator…