1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-31 21:11:44 +02:00

content for Go maps (#1866)

This commit is contained in:
gdimit07
2022-09-24 15:19:06 +03:00
committed by GitHub
parent 941a70cd9c
commit fc2e32edff

View File

@@ -1 +1,9 @@
# Maps
# Maps
Maps are the data structure in Go, where we use whenever we want to have mappings between key:value pairs. They have flexibility in terms of removing or adding elements into them. Maps do not allow duplicate entries while data are kept unordered.
<ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink colorScheme='blue' badgeText='Official Website' href='https://go.dev/tour/moretypes/19'>Go Maps</BadgeLink>
<BadgeLink badgeText='Read' href='https://www.w3schools.com/go/go_maps.php'>Maps in Go</BadgeLink>
<BadgeLink badgeText='Watch' href='https://www.youtube.com/watch?v=yJE2RC37BF4'>Golang Tutorial #15 - Maps (by Tech With Tim on YouTube)</BadgeLink>