commit | bd152b3ee973aefe5b1c5bcfc6295d2346c427ca | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <android-build-coastguard-worker@google.com> | Tue May 10 07:04:34 2022 +0000 |
committer | Android Build Coastguard Worker <android-build-coastguard-worker@google.com> | Tue May 10 07:04:34 2022 +0000 |
tree | 619b140d4e933acdbc6d87f524856c1a682011ad | |
parent | 75895edb6e320a9b64f0283201c076ea777fb44f [diff] | |
parent | eeb16f6eac71f26869b8e85d27fa5a7162f323d3 [diff] |
Snap for 8564071 from eeb16f6eac71f26869b8e85d27fa5a7162f323d3 to mainline-extservices-release Change-Id: I0230226c54b808cb79ef2e7172eb200b61ec9b20
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.