Is there a variable within a function that will return all function arguments as a named tuple (or something similar). Would be useful when calling a second function, that uses a similar set of arguments.
f2(; a,b,c ) = a+b+c
function f1(; a, b)
c=a+b
f2(; c, AllArgs... )
begin