commit | 6ecb9907dc82555e8a8f6c40e9972b20fd00cc38 | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <android-build-coastguard-worker@google.com> | Tue May 10 06:58:53 2022 +0000 |
committer | Android Build Coastguard Worker <android-build-coastguard-worker@google.com> | Tue May 10 06:58:53 2022 +0000 |
tree | 619b140d4e933acdbc6d87f524856c1a682011ad | |
parent | 224357bad7960b9d8b8e1945f2a15fa85245991c [diff] | |
parent | eeb16f6eac71f26869b8e85d27fa5a7162f323d3 [diff] |
Snap for 8564071 from eeb16f6eac71f26869b8e85d27fa5a7162f323d3 to mainline-documentsui-release Change-Id: I5eb02aa1429e1e1fd08a398335cd7e764852338e
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.