Question: What’s a good way to create a variadic ‘for’ in Clojure? I wrote this out: So I can use this like: and the result will be every possible sum, where each given collection represents the possible values for that ...
Question: I’m trying to create a function to assign default or input values to several (scalar) parameters using variadic/variable input arguments as: However, I’m getting the error on the assignment va_arg(args, int) = input[i]. Is it possible somehow to do ...