swc_allocator 4.0.1

A thin wrapper for bumpalo
Documentation
1
2
3
4
5
6
7
//! Various flavors of allocators

pub use self::{arena::Arena, global::Global, scoped::Scoped};

mod arena;
mod global;
mod scoped;