slablit

Build Status Latest Version Documentation

⚠️ This crate requires the nightly compiler

Literal for slab creation

```toml

Cargo.toml

[dependencies] slablit = "0.2.0" ```

```rust

![feature(declmacro, macroatmostonce_rep)]

use slablit::slab;

let (slab, [first, second, third]) = slab![10, 20, 30]; ```