blazemap 0.5.1

Implements a vector-based slab-like map with an interface similar to that of HashMap, and also provides tools for generating lightweight identifiers that can be type-safely used as keys for this map.
Documentation
1
2
3
4
5
6
7
8
#[cfg(feature = "loom")]
pub use loom::sync::{atomic::AtomicUsize, atomic::Ordering, RwLock, RwLockReadGuard};

#[cfg(not(feature = "loom"))]
pub use {
    parking_lot::RwLock,
    std::sync::atomic::{AtomicUsize, Ordering},
};