diff options
Diffstat (limited to 'stmutil')
-rw-r--r-- | stmutil/containers.go | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/stmutil/containers.go b/stmutil/containers.go index 2ce05e4..c7a4a49 100644 --- a/stmutil/containers.go +++ b/stmutil/containers.go @@ -88,10 +88,6 @@ func (m Map) Set(key, value any) Mappish { return m } -func (m Map) Get(key any) (any, bool) { - return m.Map.Get(key) -} - func (sm Map) Range(f func(key, value any) bool) { iter := sm.Map.Iterator() for !iter.Done() { @@ -116,10 +112,6 @@ func (sm SortedMap) Set(key, value any) Mappish { return sm } -func (sm SortedMap) Get(key any) (any, bool) { - return sm.SortedMap.Get(key) -} - func (sm SortedMap) Delete(key any) Mappish { sm.SortedMap = sm.SortedMap.Delete(key) return sm |