mirror of
https://github.com/ncruces/go-sqlite3.git
synced 2026-01-12 14:09:13 +00:00
13 lines
167 B
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
|
|
}
|