mirror of
https://github.com/italicsjenga/agb.git
synced 2025-01-11 17:41:33 +11:00
Make HashMap struct public
This commit is contained in:
parent
05b8accaec
commit
dd5aad0de5
|
@ -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>>>,
|
||||
|
|
Loading…
Reference in a new issue