Files
stash/vendor/github.com/modern-go/concurrent/go_above_19.go
bnkai 9b1518beae Export performance optimization (#475)
* recreate metadata path if needed, before exporting data
2020-04-24 12:52:21 +10:00

13 lines
119 B
Go

//+build go1.9
package concurrent
import "sync"
type Map struct {
sync.Map
}
func NewMap() *Map {
return &Map{}
}