const INITIAL_CAPACITY: usize = 256;Expand description
Initial table capacity. Power of two so probe-index = hash & mask.
256 covers the typical small-to-medium document without growth;
large (multi-MB) documents grow once or twice on the way to ~2048.