/set

A hashset implementation for go

Primary LanguageGoApache License 2.0Apache-2.0

GoDoc Build Status codecov Go Report Card License

Caution

set is currently in alpha and not fit for production level use.

set

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.