Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![feature(allocator_api)]
#![feature(new_uninit)]
#![feature(get_mut_unchecked)]

#[global_allocator]
static GLOBAL: mimalloc::MiMalloc = mimalloc::MiMalloc;

pub mod buffer;
pub mod file;
pub mod play;
pub mod plot;
pub mod pool;