commit | eeb16f6eac71f26869b8e85d27fa5a7162f323d3 | [log] [tgz] |
---|---|---|
author | David LeGare <legare@google.com> | Sat Mar 05 00:04:59 2022 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Sat Mar 05 00:04:59 2022 +0000 |
tree | 619b140d4e933acdbc6d87f524856c1a682011ad | |
parent | b2f38d110fa9baa5b82eceec486758f4e19d593f [diff] | |
parent | de61eb3934f4b364865f66c12b1f5149e8f06958 [diff] |
Update slab to 0.4.5 am: 4b88bd150c am: b54de970eb am: 80de0bb1b2 am: de61eb3934 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/slab/+/2005114 Change-Id: I44e85bd10d96f71f7867ab1b9a6c10c70089beb3
Pre-allocated storage for a uniform data type.
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.
This project is licensed under the MIT license.
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.