1 2 3 4 5 6 7 8 9 10 11 12 13
pub mod arena;
pub mod contention_pool;
mod error;
mod functions;
pub mod mem;
pub mod sort;
pub use functions::*;
#[cfg(not(feature = "bigidx"))]
pub type IdxSize = u32;
#[cfg(feature = "bigidx")]
pub type IdxSize = u64;