Is there a way to expand a vector of values into the arguments of a function? e.g. something like this:
(defn addnums [a b] (apply + (flatten [a b]))) (de
You can just use apply again:
apply
(apply addnums args)