Type Function MemoryPool [src]

Alias for std.heap.memory_pool.MemoryPool

A memory pool that can allocate objects of a single type very quickly. Use this when you need to allocate a lot of objects of the same type, because It outperforms general purpose allocators.

Prototype

pub fn MemoryPool(comptime Item: type) type

Parameters

Item: type

Source

pub fn MemoryPool(comptime Item: type) type { return MemoryPoolAligned(Item, @alignOf(Item)); }