/// `SwissTable` control-byte group width; SIMD scans operate one group at a time.
pub const GROUP_SIZE: usize = 16;
/// First-allocation slot count when a map grows from empty.
pub const INITIAL_CAPACITY: usize = 16;
/// Default headroom: `max_insertions = capacity * (1 - reserve_fraction)`.
pub const DEFAULT_RESERVE_FRACTION: f64 = 0.10;
/// Lower clamp for `sanitize_reserve_fraction`.
pub const MIN_RESERVE_FRACTION: f64 = 1e-6;
/// Upper clamp for `sanitize_reserve_fraction`.
pub const MAX_RESERVE_FRACTION: f64 = 0.999_999;
/// Upper bound on `FunnelHashMap`'s `reserve_fraction`; level capacities become
/// unstable beyond this load factor.
pub const MAX_FUNNEL_RESERVE_FRACTION: f64 = 1.0 / 8.0;
/// Control-byte region alignment. 64 = cache-line size, so the first group
/// is line-aligned and groups pack 4-per-line without straddling.
pub const CONTROL_ALIGN: usize = 64;