Bug: 153207806

Clone this repo:
  1. 6cf8226 Migrate 25 crates to monorepo. am: 871773ad65 by James Farrell · 5 months ago main master
  2. 871773a Migrate 25 crates to monorepo. by James Farrell · 5 months ago
  3. 69ed335 Update Android.bp by running cargo_embargo am: f7618c7eae by James Farrell · 6 months ago
  4. f7618c7 Update Android.bp by running cargo_embargo by James Farrell · 6 months ago
  5. 060614b Merge "Mark apex-available" into main am: 1339d2e998 by Treehugger Robot · 7 months ago android15-tests-dev

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.