Dear all, I'm trying to write a helper function that wraps OSC message sends with variable arguments. The variable input arguments is no problem, using the `... args` syntax. Now I'm wondering how to distribute the values of the args array across the input arguments of a function that also has variable arguments (NetAddr's sendMsg method). This must be possible in SC lang, but I'm stumped on what to search for... I feel like I've even written functions that do this in the past... right now my extremely ugly solution is to use a switch statement up to some number of reasonable arguments. ``` *send {|obj, method
... args| ``` |