allocator-suite 0.1.7

Allocator Suite for various allocation types
1
2
3
4
5
6
7
8
9
10
#[macro_use]
pub mod likely;
#[macro_use]
pub mod unlikely;

#[macro_use]
pub mod prelude {
    pub use super::likely::*;
    pub use super::unlikely::*;
}