1
0
mirror of https://github.com/charlienet/go-mixed.git synced 2025-07-18 08:32:40 +08:00
This commit is contained in:
2022-09-01 12:37:57 +08:00
parent 1071ad3694
commit 5b4f8097d6
3 changed files with 13 additions and 0 deletions

View File

@ -62,6 +62,10 @@ func (m *rw_map[K, V]) ToMap() map[K]V {
return m.m.ToMap()
}
func (m *rw_map[K, V]) Shrink() map[K]V {
return m.m.ToMap()
}
func (m *rw_map[K, V]) Exist(key K) bool {
return m.m.Exist(key)
}