Giant blob of minor changes
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / golang.org / x / sync@v0.0.0-20200625203802-6e8e738ad208 / syncmap / go19.go
1 // Copyright 2019 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
4
5 // +build go1.9
6
7 package syncmap
8
9 import "sync" // home to the standard library's sync.map implementation as of Go 1.9
10
11 // Map is a concurrent map with amortized-constant-time loads, stores, and deletes.
12 // It is safe for multiple goroutines to call a Map's methods concurrently.
13 //
14 // The zero Map is valid and empty.
15 //
16 // A Map must not be copied after first use.
17 type Map = sync.Map