⚓ Oxc Memory Allocator
Oxc uses a bump-based memory arena for faster AST allocations.
This crate contains an [Allocator
] for creating such arenas, as well as ports of data types
from std
adapted to use this arena:
- [
Box
] - [
Vec
] - [
String
] - [
HashMap
]
See [Allocator
] docs for information on efficient use of [Allocator
].