//+build go1.9

package concurrent

import 

// Map is a wrapper for sync.Map introduced in go1.9
type Map struct {
	sync.Map
}

// NewMap creates a thread safe Map
func () *Map {
	return &Map{}
}