aboutsummaryrefslogtreecommitdiff
path: root/daftar_kata.go
diff options
context:
space:
mode:
Diffstat (limited to 'daftar_kata.go')
-rw-r--r--daftar_kata.go17
1 files changed, 0 insertions, 17 deletions
diff --git a/daftar_kata.go b/daftar_kata.go
deleted file mode 100644
index 6232dcd..0000000
--- a/daftar_kata.go
+++ /dev/null
@@ -1,17 +0,0 @@
-// Copyright 2020, Shulhan <m.shulhan@gmail.com>. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package kamusku
-
-type DaftarKata map[string]struct{}
-
-//
-// merge other map into current map.
-//
-func (dk DaftarKata) merge(in DaftarKata) DaftarKata {
- for k := range in {
- dk[k] = struct{}{}
- }
- return dk
-}