Skip to content

Instantly share code, notes, and snippets.

@marawannwh
Created November 1, 2020 18:19
Show Gist options
  • Save marawannwh/24420a86fd36e08d4f839aa1b0e0c739 to your computer and use it in GitHub Desktop.
Save marawannwh/24420a86fd36e08d4f839aa1b0e0c739 to your computer and use it in GitHub Desktop.
v = m[k]
// compiles to something similiar to the following
v = runtime.mapaccess(mt, m, k)
// which has the following signature
func mapaccess(t *maptype, m *hmap, k unsafe.Pointer) unsafe.Pointer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment