Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Optimise looking up unused HashMap keys
This optimises lookups of unused keys. When performing a lookup using an unused key, we would cycle over all buckets in a HashMap. This commit changes lookups so that they return early the moment they find a missing bucket.
- Loading branch information