#slotmap #slab #pi

nightly no-std pi_slotmap

Slotmap data structure

16 releases

0.2.0 Aug 16, 2023
0.1.16 Feb 28, 2024
0.1.15 Oct 10, 2023
0.1.5 Mar 24, 2023
0.1.0 Mar 4, 2022

#106 in Data structures

Download history 52/week @ 2023-11-27 24/week @ 2023-12-04 32/week @ 2023-12-11 376/week @ 2023-12-18 453/week @ 2023-12-25 333/week @ 2024-01-01 53/week @ 2024-01-08 27/week @ 2024-01-15 33/week @ 2024-01-22 17/week @ 2024-01-29 38/week @ 2024-02-05 53/week @ 2024-02-12 161/week @ 2024-02-19 235/week @ 2024-02-26 93/week @ 2024-03-04 80/week @ 2024-03-11

582 downloads per month
Used in 21 crates (14 directly)

MIT/Apache

320KB
5K SLoC

该库slotmap的一份拷贝,另外添加了一些新的功能

slotmap

A Rust library providing three containers with persistent unique keys to access stored values, SlotMap, HopSlotMap and DenseSlotMap. Upon insertion a key is returned that can be used to later access or remove the values. Insertion, deletion and access all take O(1) time with low overhead. Great for storing collections of objects that need stable, safe references but have no clear ownership otherwise, such as game entities or graph nodes. Two secondary maps, SecondaryMap and SparseSecondaryMap are also provided that allow you to map further objects to the keys created by one of the slot maps. Please refer to the the documentation for more information.

The minimum required stable Rust version for slotmap is 1.49. To start using slotmap add the following to your Cargo.toml:

[dependencies]
slotmap = "1.0"

Example

A short example:

use slotmap::{SlotMap, SecondaryMap};

let mut sm = SlotMap::new();
let foo = sm.insert("foo");  // Key generated on insert.
let bar = sm.insert("bar");
assert_eq!(sm[foo], "foo");
assert_eq!(sm[bar], "bar");

sm.remove(bar);
let reuse = sm.insert("reuse");  // Space from bar reused.
assert_eq!(sm.contains_key(bar), false);  // After deletion a key stays invalid.

let mut sec = SecondaryMap::new();
sec.insert(foo, "noun");  // We provide the key for secondary maps.
sec.insert(reuse, "verb");

for (key, val) in sm {
    println!("{} is a {}", val, sec[key]);
}

License

slotmap is released under the Zlib license, a permissive license. It is OSI and FSF approved and GPL compatible.

Dependencies

~0.7–1.4MB
~29K SLoC