Allocates size bytes of memory.
Amount of memory to allocate.
The pointer to the new allocated memory.
auto p = MmapPool.instance.allocate(20); assert(p); MmapPool.instance.deallocate(p);
See Implementation
Allocates size bytes of memory.