Skip to content

Remove Set

gitlab-qa-bot requested to merge remove_set into master

Created by: JonRowe

In general we want to require as little of the std lib as possible to prevent false positives with peoples code due to us using part of the std lib and then developers not requiring those parts, this removes our existing usage of set which is normally done for uniqueness / constant time lookup reasons and replaces it with a class that uses a hash internally.

Merge request reports