aboutsummaryrefslogtreecommitdiff
path: root/map.go
diff options
context:
space:
mode:
Diffstat (limited to 'map.go')
-rw-r--r--map.go8
1 files changed, 0 insertions, 8 deletions
diff --git a/map.go b/map.go
deleted file mode 100644
index 5692065..0000000
--- a/map.go
+++ /dev/null
@@ -1,8 +0,0 @@
-package main
-
-type Map[K comparable, V interface{}] map[K]V
-
-func (m Map[K, V]) Contain(key K) bool {
- _, ok := m[key]
- return ok
-}