Golang: Passing a slice of variables to a function as multiple arguments
Friday, Sep 11th, 2015
You need to pass some unknown number of values to a function (https://en.wikipedia.org/wiki/Variadic_function) which accepts unlimited arguments in golang? Put everything in a slice of interface{} and unpack that with "..."