Partial Function with Placeholders

None

Example Testcases:

(...args) => args
[2,4,6]
[8,10]
(...args) => args
[1,2,"_",4,"_",6]
[3,5]
(a, b, c) => b + a - c
["_", 5]
[5, 20]