1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-28 11:39:52 +02:00

content for Golang's make function (#1870)

* content for Go maps

* content for Golang's make function
This commit is contained in:
Giorgos Dimitriadis
2022-09-26 20:17:46 +03:00
committed by GitHub
parent e2729be35f
commit 99b063ef59

View File

@@ -1 +1,9 @@
# Make
# Make
Golang's built-in function make, helps us create and initialize slices, maps and channels, depending on the arguments that are provided to the function.
<ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink badgeText='Read' href='https://www.golangprograms.com/how-to-create-slice-using-make-function-in-golang.html'>Create a slice with make</BadgeLink>
<BadgeLink badgeText='Read' href='https://www.golangprograms.com/golang-package-examples/how-to-create-map-using-the-make-function-in-go.html'>Create a map with make</BadgeLink>
<BadgeLink badgeText='Read' href='https://www.programiz.com/golang/channel#channel'>Create a channel with make</BadgeLink>