Operator overload spread operator

So what you want to achieve is something like

functionTakingVarArgs(*myList)

working? I think that can be handled simply enough by something like

functionTakingVarArgs(*myList.toArray())

which wouldn’t warrant another language feature.