tangled
alpha
login
or
join now
oppi.li
/
stacking-demo
nothing to see here
0
fork
atom
overview
issues
pulls
pipelines
set: introduce Set type
oppi.li
7 months ago
5561a54d
options
unified
split
Changed files
+6
go.mod
set.go
+3
go.mod
···
1
1
+
module tangled.sh/oppi.li/go-hashset
2
2
+
3
3
+
go 1.24.1
+3
set.go
···
1
1
+
package hashset
2
2
+
3
3
+
type Set[T comparable] map[T]struct{}