Back to Developer Roadmap

Maps

src/data/roadmaps/golang/content/[email protected]

4.0654 B
Original Source

Maps

Built-in associative data type mapping keys to values. Reference types created with make(map[KeyType]ValueType) or map literals. Keys must be comparable types. Support insertion, deletion, lookup operations. Check existence with comma ok idiom: value, ok := map[key].

Visit the following resources to learn more: