Is there a function that takes a list and returns multiple arguments, one for each element in the list?
this would be the opposite of LIST (which takes multiple args and makes them into a list)
for example:
(mysteryfunction '(1 2 3))
1 2 3
((extra information: i need this because i have a function that takes 6 args, the last three of which are in a list of three arguments. i realize that i could use car, cadr, then caddr but that would be much messier))
thanks!
