Reflection in Golang
Reflection is an advanced programming concept, which in some programming languages allows the program to check types and values at runtime. Go has a package for reflection – the reflect package. In this post, we are going to discuss how to do reflection in Go. What is Reflection in Programming? Reflection is the way a […]
Reflection in Golang Read More »