Make HashMap struct public

This commit is contained in:
Gwilym Kuiper 2022-03-17 23:46:21 +00:00
parent 05b8accaec
commit dd5aad0de5

View file

@ -33,7 +33,7 @@ where
}
}
struct HashMap<K, V> {
pub struct HashMap<K, V> {
number_of_elements: usize,
max_distance_to_initial_bucket: u32,
nodes: Vec<Option<Node<K, V>>>,