1//+build go1.9
2
3package concurrent
4
5import "sync"
6
7type Map struct {
8	sync.Map
9}
10
11func NewMap() *Map {
12	return &Map{}
13}