commit | 224357bad7960b9d8b8e1945f2a15fa85245991c | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <android-build-coastguard-worker@google.com> | Fri Aug 20 16:12:11 2021 +0000 |
committer | Android Build Coastguard Worker <android-build-coastguard-worker@google.com> | Fri Aug 20 16:12:11 2021 +0000 |
tree | 0ae352b18f96fcca3ce41cc57c7dc718af0a41e2 | |
parent | 5922e7ee56e0cbd4ea7e9f388b3de727c875f4a4 [diff] | |
parent | c7a0ca3f7fc2a1505551536e0b90e0d209a2a824 [diff] |
Snap for 7661017 from c7a0ca3f7fc2a1505551536e0b90e0d209a2a824 to mainline-documentsui-release Change-Id: I9feeb0f9ec29980cfa4f7b7689e27d0bdc9caec0
Pre-allocated storage for a uniform data type.
To use slab
, first add this to your Cargo.toml
:
[dependencies] slab = "0.4.2"
Next, add this to your crate:
extern crate slab; 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.