Caution
set is currently in alpha and not fit for production level use.
set
is a basic implementation of a Hashset
in golang. set
is underpinned by a hashmap
(map[comparable]struct{}
) to be exact and shares the same concurrency traits of a map.