16 releases

0.4.9 Aug 22, 2023
0.4.8 Feb 19, 2023
0.4.7 Jul 19, 2022
0.4.5 Oct 13, 2021
0.1.2 Jul 23, 2015

#3 in Memory management

Download history 1833964/week @ 2024-04-05 1873516/week @ 2024-04-12 1886323/week @ 2024-04-19 1779104/week @ 2024-04-26 1784619/week @ 2024-05-03 1823486/week @ 2024-05-10 1842501/week @ 2024-05-17 1777279/week @ 2024-05-24 2006702/week @ 2024-05-31 1958930/week @ 2024-06-07 1933047/week @ 2024-06-14 1997314/week @ 2024-06-21 1850312/week @ 2024-06-28 1913611/week @ 2024-07-05 1993608/week @ 2024-07-12 1682625/week @ 2024-07-19

7,793,147 downloads per month
Used in 24,562 crates (390 directly)

MIT license

54KB
734 lines

Slab

Pre-allocated storage for a uniform data type.

Crates.io Build Status

Documentation

Usage

To use slab, first add this to your Cargo.toml:

[dependencies]
slab = "0.4"

Next, add this to your crate:

use slab::Slab;

let mut slab = Slab::new();

let hello = slab.insert("hello");
let world = slab.insert("world");

assert_eq!(slab[hello], "hello");
assert_eq!(slab[world], "world");

slab[world] = "earth";
assert_eq!(slab[world], "earth");

See documentation for more details.

License

This project is licensed under the MIT license.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in slab by you, shall be licensed as MIT, without any additional terms or conditions.

Dependencies

~175KB