You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-3Lines changed: 5 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# C++ Hashmap (1.0.1)
1
+
# C++ Hashmap (1.0.2)
2
2
3
3
## Table of Contents
4
4
@@ -52,10 +52,12 @@ This implementation is header-only. Simply include it in your project and you ar
52
52
53
53
The hashmap was written in C++17 and utilises the following standard headers:
54
54
55
+
#### <cstddef>
56
+
This header is used for [size_t](https://en.cppreference.com/w/c/types/size_t), which is used to represent the size of the container.
57
+
55
58
#### <functional>
56
59
This header is used for [std::hash](https://en.cppreference.com/w/cpp/utility/hash), which allows for generic hashing of C++ types. Developers can also provide custom specializations for their own types.
57
60
58
-
59
61
#### <stdexcept>
60
62
This header is used for [std::runtime_error](https://en.cppreference.com/w/cpp/error/runtime_error), which enables the script to throw meaningful exceptions.
61
63
@@ -64,4 +66,4 @@ This header is used for [std::vector](https://en.cppreference.com/w/cpp/containe
64
66
65
67
### References
66
68
67
-
- Wang, Q. (Harry) (2020). Implementing Your Own HashMap (Explanation + Code). YouTube. Available at: https://www.youtube.com/watch?v=_Q-eNqTOxlE[Accessed 2021].
69
+
- Wang, Q. (Harry) (2020). Implementing Your Own HashMap (Explanation + Code). YouTube. Available at: https://www.youtube.com/watch?v=_Q-eNqTOxlE[Accessed 2021].
0 commit comments