index
:
go
bench-before
fix-runtime-test-GOMAXPROCS
json-isValidNumber
json-isValidNumber-before
main
makepkg
ms-fix-multipart-readform
Fork of Go programming language with my patches.
Go Authors
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
sync
/
map.go
Age
Commit message (
Expand
)
Author
2025-07-29
sync: remove synchashtriemap GOEXPERIMENT
Michael Anthony Knyszek
2024-11-18
sync: make HashTrieMap[any, any] the default implementation of Map
Michael Anthony Knyszek
2024-11-18
sync: add explicit noCopy fields to Map, Mutex, and Once
Michael Anthony Knyszek
2024-06-07
sync: include links to the Go memory model in package documentation
Rodrigo Orselli
2024-03-21
sync: name the Map.CompareAndSwap return value
Peter Collingbourne
2024-02-26
sync: add available godoc link
cui fliter
2024-02-01
sync: update doc for Map.Clear
Jes Cok
2024-02-01
sync: add Map.Clear
Hiro
2024-01-08
sync: use map[any]any instead of map[interface{}]interface{} in the godoc
sivchari
2023-09-01
sync: prevent (*Map).Range from always escaping
Mauri de Souza Meneguzzo
2023-01-20
sync: document memory model for Swap/CompareAnd{Swap,Delete} in Map
Changkun Ou
2022-11-15
sync: add new Map method Swap, CompareAndSwap, CompareAndDelete
Changkun Ou
2022-10-31
sync: use atomic.Pointer for entry
Changkun Ou
2022-08-29
sync: switch Map to use atomic.Pointer
Joe Tsai
2022-06-06
runtime, sync, sync/atomic: document happens-before guarantees
Russ Cox
2021-12-13
all: gofmt -w -r 'interface{} -> any' src
Russ Cox
2021-11-11
sync: clarify the validity to call Map methods inside Range
Changkun Ou
2021-04-08
sync: update misleading comment in map.go about entry type
panchenglong01
2020-08-24
sync: delete dirty keys inside Map.LoadAndDelete
Changkun Ou
2020-02-25
sync: add new Map method LoadAndDelete
Changkun Ou
2018-09-27
sync: simplify (*entry).tryStore
Ian Lance Taylor
2018-01-04
sync: document when and when not to use Map
Russ Cox
2017-07-21
sync: delete a sentence from the Map docs
Brad Fitzpatrick
2017-07-21
sync: update Map documentation with usage rule of thumb
Michael Stapelberg
2017-04-26
sync: import Map from x/sync/syncmap
Bryan C. Mills