summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/jesseduffield/generics/set/set.go
blob: 3e9b9d9bfed3421bc09cafe54b544282fc1d5ef9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package set

import "github.com/jesseduffield/generics/hashmap"

type Set[T comparable] struct {
	hashMap map[T]bool
}

func New[T comparable]() *Set[T] {
	return &Set[T]{hashMap: make(map[T]bool)}
}

func NewFromSlice[T comparable](slice []T) *Set[T] {
	hashMap := make(map[T]bool)
	for _, value := range slice {
		hashMap[value] = true
	}

	return &Set[T]{hashMap: hashMap}
}

func (s *Set[T]) Add(value T) {
	s.hashMap[value] = true
}

func (s *Set[T]) AddSlice(slice []T) {
	for _, value := range slice {
		s.Add(value)
	}
}

func (s *Set[T]) Remove(value T) {
	delete(s.hashMap, value)
}

func (s *Set[T]) RemoveSlice(slice []T) {
	for _, value := range slice {
		s.Remove(value)
	}
}

func (s *Set[T]) Includes(value T) bool {
	return s.hashMap[value]
}

// output slice is not necessarily in the same order that items were added
func (s *Set[T]) ToSlice() []T {
	return hashmap.Keys(s.hashMap)
}