1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
//! Scalable concurrent containers.
//!
//! # scc::HashMap
//! A concurrent hash map that dynamically grows and shrinks in a non-blocking manner without sharding.
//!
//! # scc::TreeIndex
//! A concurrent tree index optimized for scan and read.

mod hashmap;
mod treeindex;

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

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