I have a list with x number of parameters
[p1,p2,p3...pk]
and I need each item on the list to pass as a parameter so it goes like
function(p1,p2..,pk)
How can I do this without changing the function to recieve a list? something like iter items, but I cant just go next(list) on each parameter because I don't know how much parameters i'm going to insert into the function