#slotmap #key-value #map #slot #lookup #key-storage #structure

one_way_slot_map

An implementation of SlotMap with minimal restrictions on Keys and Values

10 releases

0.4.2 Dec 12, 2021
0.4.1 Oct 7, 2021
0.3.1 Jul 27, 2020
0.2.2 Jul 23, 2020
0.1.3 Jun 11, 2020

#1108 in Data structures

Download history 3/week @ 2024-02-19 10/week @ 2024-02-26 9/week @ 2024-03-11 190/week @ 2024-04-01

199 downloads per month
Used in ev_slotmap

MIT/Apache

53KB
908 lines

One-Way Slot Map

This is an implementation of the slot map data structure similar to SlotMap with fewer restrictions and the ability to embed data inside the key objects. The "one-way" moniker for this crate comes from an implementation detail that prevent inserted values from being taken out again unless they are replaced with another instance. Values that are inserted can be referenced, and written to, but ownership of the values remains with the map even after the value is "removed".

The data structure uses fixed size chunks (like SlotMap's DenseSlotMap), so lookups require 2 steps of indirection.

Example Usage:

First create a Key Class with an embedded data type

/// Define a simple key with an embedded usize
define_key_type!(DemoKey<usize>);

/// Or define a less-simple key with some derived traits
define_key_type!(TestKeyWithDerives<usize> : Copy + Clone + Debug);

Then create a slot map and use the key for crud operations

let mut slot_map = SlotMap::new();

let key: DemoKey = slot_map.insert(0, "Demo!");
assert_eq!(Some(&"Demo!"), slot_map.get(&key));

let slot = slot_map.get_mut(&key).unwrap();
*slot = "Updated!";

assert_eq!(Some(&mut "Updated!"), slot_map.remove(&key));
assert_eq!(None, slot_map.get(&key));

Performance

Benchmarks to come, but in summary, this slot map is about half as fast as fast as the default implementation of SlotMap's SlotMap, slightly faster than SlotMap's DenseSlotMap and about a dozen times faster than std::collections::HashMap.

No runtime deps