mirror of
1
Fork 0
gotosocial/vendor/github.com/ncruces/go-sqlite3/internal/util/set.go

13 lines
167 B
Go

package util
type Set[E comparable] map[E]struct{}
func (s Set[E]) Add(v E) {
s[v] = struct{}{}
}
func (s Set[E]) Contains(v E) bool {
_, ok := s[v]
return ok
}