package
0.0.0-20200526015148-b343531734ec
Repository: https://github.com/fakorede/learning-golang.git
Documentation: pkg.go.dev

# README

Map Internals and Cloning

When we create a Map, Go creates a Map Header behind the scenes then it returns the memory location of that header.

Map Variable: dict
Pointer40
Map Variable: turkish
Pointer40

Map Variabe(or Value) is a pointer to the memory address of a map header which contains another pointer to the actual data.