There is a function I want to call that accepts a variable number of parameters of a given type. If I have an array of objects of that type (or some other collection), is there some trick I can use to just pass the collection to the function, instead of manually unpacking it?
Specifically, the function is this one, which pretty-prints multiple regression results, and I have a collection of regressions generated in a loop that I’d like to feed to it.
thanks,
Graham