To build a deffunction by API calls, you use s.th. like
   Deffunction xfunc = new Deffunction( "func", "comment" );
   xfunc.addArgument( "arg",... );
   Funcall fc1 = new Funcall(...);
   fc1.arg( ... );
   xfunc.addAction( fc1 );
And so on.

What I'd like to do is to pass all the parameters of the defined
function "func" to some Funcall within the body of that function.

I tried to use an  RU.MULTIVARIABLE as a "func" argument and
pass that to the Funcall, but intrinsics don't seem to like that.

Is there a way to pass the multivariable as a single argument?

I can - vaguely - imagine that it's possible to call the API from the
composed
function using calls to (call) to build a Funcall that has as many
arguments as the multivariable contains simple variables, and
then call that function. But this seems to be a lot of effort for a simple
task.

Cheers
Wolfgang

Reply via email to