Expand description
A map used for VM runtime caches. The data structures are highly specialized for the VM runtime and are probably not useful outside of it.
Structs§
- Arena
- A thread-safe variant of
typed_arena::Arena. - Cache
Map - A map custom designed for the VM runtime caches. Allocations are done in an Arena instead of directly in a hash table, which allows for new entries to be added while existing entries are borrowed out.
Type Aliases§
- Cache
RefMap - The most common case of
CacheMap, where references to stored values are handed out.