| commit | def48f396e22c520acb75c1adec4545376414625 | [log] [tgz] |
|---|---|---|
| author | Android Build Coastguard Worker <[email protected]> | Thu Jun 16 22:03:11 2022 +0000 |
| committer | Android Build Coastguard Worker <[email protected]> | Thu Jun 16 22:03:11 2022 +0000 |
| tree | 619b140d4e933acdbc6d87f524856c1a682011ad | |
| parent | 4161705f4306949f301f7f3c8f942012274548e4 [diff] | |
| parent | eeb16f6eac71f26869b8e85d27fa5a7162f323d3 [diff] |
Snap for 8736029 from eeb16f6eac71f26869b8e85d27fa5a7162f323d3 to mainline-go-documentsui-release Change-Id: I53cd3d1753ae954c255bd2152ff04e0f6b301814
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.