pub type HashMap<K, V, S = DefaultHashBuilder> = SizedHashMap<K, V, S, 32>;Expand description
SizedHashMap implementation that alternates between a vector
and a hashmap to improve performance for low key counts.
With a standard upper vector limit of 32