Expand description
Concurrent containers.
HashMap
: concurrent hash map.HashIndex
: concurrent hash map optimized for read.TreeIndex
: concurrent B+ tree optimized for read.
Utilities.
- Epoch-based-reclamation.
LinkedList
: lock-free concurrent linked list type trait.Queue
: lock-free concurrent queue.
Re-exports
pub use hash_map::HashMap;
pub use hash_index::HashIndex;
pub use hash_set::HashSet;
pub use tree_index::TreeIndex;
Modules
Structs
Traits
LinkedList
is a type trait implementing a lock-free singly linked list.