Hello, I've implemented a hashmap using quadratic probing as a form of collision handling in C++20.
I'm specifically looking for some possible but reasonable:
- Optimizations that could be made (speed and space).
- Optimal usage of C++20 features.
- Make the code look better.
- Redundancy reduction + code size reduction.
- Modern practices for the C++20 standard.