#programming-languages
Read more stories on Hashnode
Articles with this tag
What Reflect can be used for. Reflection can be used to examine type and value info at runtime. How to get the actual type of an interface. package...
What is sync.Map sync map is concurrent safe map data type. Use Cases used to store keys and values in multiple concurrent...
there are three way to declare a slice in golang. define slice // use slice literal var slice []int // use make without cap var slice = make([]int,...