aboutsummaryrefslogtreecommitdiff
path: root/set.go
diff options
context:
space:
mode:
Diffstat (limited to 'set.go')
-rw-r--r--set.go16
1 files changed, 0 insertions, 16 deletions
diff --git a/set.go b/set.go
deleted file mode 100644
index 760c9ae..0000000
--- a/set.go
+++ /dev/null
@@ -1,16 +0,0 @@
-package main
-
-type Set[T comparable] map[T]bool
-
-func (s Set[T]) Contain(val T) bool {
- _, ok := s[val]
- return ok
-}
-
-func (s Set[T]) Insert(val T) {
- s[val] = true
-}
-
-func (s Set[T]) Erase(val T) {
- delete(s, val)
-}