https://github.com/symonk/set
A hashset implementation for go
https://github.com/symonk/set
Last synced: about 2 months ago
JSON representation
A hashset implementation for go
- Host: GitHub
- URL: https://github.com/symonk/set
- Owner: symonk
- License: apache-2.0
- Created: 2024-06-29T12:57:01.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-06-30T14:15:24.000Z (11 months ago)
- Last Synced: 2025-02-08T20:47:30.621Z (3 months ago)
- Language: Go
- Size: 33.2 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://pkg.go.dev/github.com/symonk/set)
[](https://github.com/symonk/set/actions/workflows/go_test.yml)
[](https://codecov.io/gh/symonk/set)
[](https://goreportcard.com/report/github.com/symonk/set)
[](https://github.com/symonk/set/blob/master/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.-----