rust-lockless-slotmap 0.1.0

A (mostly) lockless slotmap implementation in Rust
Documentation
1
2
3
4
5
# Rust Lockless Slotmap


This is a lockless slotmap implementation in Rust.

A slotmap is a data structure that allows you to store a value and get a key to access it. The key is a small integer that is unique to the value. The key can be used to access the value in constant time.