I have a function called myfunction. it has 10 optional arguments. This calls another function called myotherfunction which has the same 10 optional arguments.
So let's say I call myfunction with only argument one. How do I call myotherfunction using only argument one when I don't know which of the 10 optional arguments have been passed?
I can't say ret_value=myotherfunction(arg1:=argumentone) because there could be between 1 and 10 arguments that I need to pass. If I used 2 arguments then it would have to be ret_value=myotherfunction(arg1:=argumentone, arg2:=argumenttwo) but again at run time I don't know which arguments have been passed to myfunction. Is there a way to parse a function call?