#slotmap #arena-allocator #reference #arena #allocator #storage

no-std slotmapd

orlp/slotmap fork where serialization cycle doesn't change observable behavior

5 stable releases

1.0.10 Aug 8, 2023
1.0.9 Aug 3, 2023

#69 in Memory management

Download history 319/week @ 2024-01-01 564/week @ 2024-01-08 555/week @ 2024-01-15 609/week @ 2024-01-22 524/week @ 2024-01-29 173/week @ 2024-02-05 480/week @ 2024-02-12 446/week @ 2024-02-19 708/week @ 2024-02-26 692/week @ 2024-03-04 588/week @ 2024-03-11 729/week @ 2024-03-18 464/week @ 2024-03-25 483/week @ 2024-04-01 397/week @ 2024-04-08 562/week @ 2024-04-15

1,911 downloads per month
Used in flat_spatial

Zlib license

280KB
4.5K SLoC

Fork

This is a fork of orlp/slotmap where going through a serialization cycle doesn't change observable behavior (such as new key values or iteration order).

Please use the original library if you do not need this invariant as this fork will not be as maintained.

slotmap_deterministic

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 slotmapd::{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

~180KB