Allocator Suite

This crate is mostly rewritten version of context-allocator crate. It contains better NUMA-aware global allocator with hygienic macros. Contains better likelihood paths and faster execution paths.

Usage

```rust

![feature(allocator_api)]

![feature(extern_types)]

![feature(core_intrinsics)]

![feature(libstdsysinternals)]

![feature(thread_local)]

![feature(const_fn)]

// Allocator generator macro use allocatorsuite::switchableallocator;

// General imports use allocator_suite::adaptors::prelude::*; use std::alloc::System;

switchableallocator!( applicationallocator, BumpAllocator>, MultipleBinarySearchTreeAllocator, GlobalAllocToAllocatorAdaptor, GlobalAllocToAllocatorAdaptor(System) ); ```