scc 0.4.4

Scalable concurrent data structures for database management systems
Documentation
//! Scalable concurrent containers.
//!
//! # [`scc::HashMap`]
//! [`scc::HashMap`] is a concurrent hash map that dynamically grows and shrinks in a non-blocking manner without sharding.
//!
//! # [`scc::HashIndex`]
//! [`scc::HashIndex`] is a concurrent hash index that is similar to scc::HashMap, but optimized for read operations.
//!
//! # [`scc::TreeIndex`]
//! [`scc::TreeIndex`] is a concurrent B+ tree index optimized for scan and read.
//!
//! [`scc::HashMap`]: hashmap::HashMap
//! [`scc::HashIndex`]: hashindex::HashIndex
//! [`scc::TreeIndex`]: treeindex::TreeIndex

// scc::HashMap
mod hashmap;
pub use hashmap::Accessor;
pub use hashmap::Cursor;
pub use hashmap::HashMap;

// scc::HashIndex
mod hashindex;
pub use hashindex::HashIndex;

// scc::TreeIndex
mod treeindex;
pub use treeindex::Scanner;
pub use treeindex::TreeIndex;