package mapsync
var (
// sync map
MapInt *mapInt
)
type mapInt = syncMap[int]
func NewMapInt() *mapInt {
return newSyncMap[int]()
}