package mapsync var ( // sync map MapFloat *mapFloat ) type mapFloat = syncMap[float64] func NewMapFloat() *mapFloat { return newSyncMap[float64]() }