Description
C++ library of special purpose memory allocators.
Memtailor is a C++ library of special purpose memory allocators. It currently offers an arena allocator and a memory pool.
The main motivation to use a memtailor allocator is better and more predictable performance than you get with new/delete. Sometimes a memtailor allocator can also be more convenient due to the ability to free many allocations at one time.