What is the correct name for operator *, as in function(*args)? unpack, unzip, something else?
*
function(*args)
I believe it's most commonly called the "splat operator." Unpacking arguments is what it does.