swc_allocator/allocators/
mod.rs

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;