txmap 2.1.1

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)>;