mirror of
https://github.com/ergochat/ergo.git
synced 2024-11-15 16:39:32 +01:00
30 lines
501 B
Go
30 lines
501 B
Go
// Copyright (c) 2020 Shivaram Lingamneni
|
|
// released under the MIT license
|
|
|
|
package utils
|
|
|
|
type empty struct{}
|
|
|
|
type HashSet[T comparable] map[T]empty
|
|
|
|
func (s HashSet[T]) Has(elem T) bool {
|
|
_, ok := s[elem]
|
|
return ok
|
|
}
|
|
|
|
func (s HashSet[T]) Add(elem T) {
|
|
s[elem] = empty{}
|
|
}
|
|
|
|
func (s HashSet[T]) Remove(elem T) {
|
|
delete(s, elem)
|
|
}
|
|
|
|
func SetLiteral[T comparable](elems ...T) HashSet[T] {
|
|
result := make(HashSet[T], len(elems))
|
|
for _, elem := range elems {
|
|
result.Add(elem)
|
|
}
|
|
return result
|
|
}
|