Say i have a function that takes to coordinates, x and y.
For x I have a sequence of values say [1 2 3] and for y I have another sequence of values say [4 5 6].
How would I get a list with all the combinations of these?
So the desired result would be something like:
(myfn [1 2 3] [4 5 6]) => [[1 4] [1 5] [1 6] [2 4] [2 5] [2 6] [3 4] [3 5] [3 6]]
Is there an existing function for something like this?