slablit

Build Status Latest Version Documentation

Literal for slab creation

Usage

Add this to your Cargo.toml: toml [dependencies] slablit = "0.3"

Example

```rust use slablit::slab;

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