1 Star 1 Fork 1

U语言组织 / U语言

forked from 秋来冬风 / U语言 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pool.go 223 Bytes
一键复制 编辑 原始数据 按行查看 历史
package utils
import (
"sync"
)
var MapSet = sync.Pool{
New: func() interface{} {
return make(map[string]struct{})
},
}
func PutMapSet(m map[string]struct{}) {
for k := range m {
delete(m, k)
}
MapSet.Put(m)
}
Go
1
https://gitee.com/u-language/u-language.git
git@gitee.com:u-language/u-language.git
u-language
u-language
U语言
a214d6007862

搜索帮助

53164aa7 5694891 3bd8fe86 5694891