Variadic functions in Golang

In many cases, multiple parameters are needed to be passed in a function. Sometimes we know how many and other times we don’t. Golang variadic function applies to the second case where we don’t know how many arguments could be passed when calling that function. What are variadic functions in Golang? Variadic functions are just … Continue reading Variadic functions in Golang