nothing to see here

set: introduce Set type

oppi.li 5561a54d

Changed files
+6
+3
go.mod
··· 1 + module tangled.sh/oppi.li/go-hashset 2 + 3 + go 1.24.1
+3
set.go
··· 1 + package hashset 2 + 3 + type Set[T comparable] map[T]struct{}