Go Map Internals

Go in Action book not given more details about internal implementation about Map. Anybody can explain with good drawing or share some resources to understand fully the internals about Map in Go. Thanks

1 Like

Take a look at the source code:

1 Like

How the hash function choosing the right bucket?

Looks like it does it here: https://github.com/golang/go/blob/fd095936673dcb53b96b825d95c1e83adde3ce15/src/runtime/map.go#L414

2 Likes

Thanks for sharing

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.