Expand description
Fast arena allocators for different usage purposes.
They cannot deallocate single allocated entities for extra efficiency. These allocators mainly serve as the backbone for an efficient Wasm store implementation.
Structs§
- Arena
- An arena allocator with a given index and entity type.
- Component
Vec - Stores components for entities backed by a
Vec
. - Dedup
Arena - A deduplicating arena allocator with a given index and entity type.
- Guarded
Entity - A guarded entity.
- Iter
- An iterator over shared references of arena entities and their indices.
- IterMut
- An iterator over exclusive references of arena entities and their indices.
Traits§
- Arena
Index - Types that can be used as indices for arenas.