talc 5.0.3

A fast and flexible allocator for no_std and WebAssembly
Documentation
1
2
3
4
5
6
7
8
9
// TODO: single bin strat
// TODO: two bin strat

macro_rules! for_many_talc_configurations {
    ($test_fn:ident) => {
        $test_fn::<crate::base::binning::DefaultBinning>();
        $test_fn::<crate::wasm::WasmBinning>();
    };
}