mirror of
https://github.com/italicsjenga/agb.git
synced 2025-01-26 00:56:38 +11:00
Make HashMap struct public
This commit is contained in:
parent
05b8accaec
commit
dd5aad0de5
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ where
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
struct HashMap<K, V> {
|
pub struct HashMap<K, V> {
|
||||||
number_of_elements: usize,
|
number_of_elements: usize,
|
||||||
max_distance_to_initial_bucket: u32,
|
max_distance_to_initial_bucket: u32,
|
||||||
nodes: Vec<Option<Node<K, V>>>,
|
nodes: Vec<Option<Node<K, V>>>,
|
||||||
|
|
Loading…
Add table
Reference in a new issue