/// Portable SWAR and NEON groups fit eight control bytes in one `u64` mask.
pub const GROUP_SIZE_U32: u32 = 8;
/// SSE scans sixteen control bytes at a time.
pub const GROUP_SIZE_U32: u32 = 16;
pub const GROUP_SIZE: usize = GROUP_SIZE_U32 as usize;
/// Align arena allocations so memset can use cache-line fast paths.
pub const CACHE_LINE: usize = 64;
/// First-allocation slot count when a map grows from empty.
pub const INITIAL_CAPACITY: usize = 16;
pub const INITIAL_CAPACITY: usize = GROUP_SIZE;