Suppose I have a function definition like this:
f x y z = ...
Now I have a list of each of the argument: [x],[y],[z]
How do I somehow map f over all the corresponding element in each list? That is, i want only the first element(or the second, third, but not with different positions) from all the lists to be applied to the function. For example:
f x1 y1 z1
f x2 y2 z2
but not
f x1 y2 z3 etc