pub fn map_with_capacity<K, V>(capacity: usize) -> RapidMap<K, V>where K: Hash + Eq, V: Default,
Creates a new RapidMap with the specified capacity; returning the initialized map for use.
RapidMap