txmap 3.1.0

A concurrent transactional hash map for Rust with fine-grained locking, internal mutability and composable transactions
Documentation
1
2
3
use hashbrown::HashTable;

pub(crate) type Shard<K, V> = HashTable<(K, V)>;