type sync.Map
26 uses
sync (current package)
map.go#L27: type Map struct {
map.go#L102: func (m *Map) Load(key interface{}) (value interface{}, ok bool) {
map.go#L136: func (m *Map) Store(key, value interface{}) {
map.go#L199: func (m *Map) LoadOrStore(key, value interface{}) (actual interface{}, loaded bool) {
map.go#L268: func (m *Map) LoadAndDelete(key interface{}) (value interface{}, loaded bool) {
map.go#L292: func (m *Map) Delete(key interface{}) {
map.go#L318: func (m *Map) Range(f func(key, value interface{}) bool) {
map.go#L351: func (m *Map) missLocked() {
map.go#L361: func (m *Map) dirtyLocked() {
encoding/binary
binary.go#L399: var structSize sync.Map // map[reflect.Type]int
encoding/gob
type.go#L39: var userTypeCache sync.Map // map[reflect.Type]*userTypeInfo
type.go#L801: nameToConcreteType sync.Map // map[string]reflect.Type
type.go#L802: concreteTypeToName sync.Map // map[reflect.Type]string
encoding/json
encode.go#L372: var encoderCache sync.Map // map[reflect.Type]encoderFunc
encode.go#L1409: var fieldCache sync.Map // map[reflect.Type]structFields
mime
type.go#L16: mimeTypes sync.Map // map[string]string; ".Z" => "application/x-compress"
type.go#L17: mimeTypesLower sync.Map // map[string]string; ".z" => "application/x-compress"
type.go#L22: extensions sync.Map // map[string][]string; slice values are append-only.
type.go#L25: func clearSyncMap(m *sync.Map) {
reflect
type.go#L1374: var ptrMap sync.Map // map[*rtype]*ptrType
type.go#L1751: var lookupCache sync.Map // map[cacheKey]*rtype
type.go#L1771: m sync.Map
type.go#L2328: m sync.Map
type.go#L2993: var layoutCache sync.Map // map[layoutKey]layoutType
src.elv.sh/pkg/eval/vals
struct_map.go#L52: var structMapInfos sync.Map
src.elv.sh/pkg/rpc
server.go#L185: serviceMap sync.Map // map[string]*service
The pages are generated with Golds v0.2.8-preview. (GOOS=darwin GOARCH=arm64)