oadl::argvec - return a List containing
all the arguments passed to the current procedure
oadl::argvec()
Returns a List containing all the arguments
passed to the current procedure. This List can be
passed as an argument list to subsequent procedures using the OADL
hash-call syntax
prc#(list).
A List containing all the arguments passed to
the current procedure
None
proc bar(a, b, c)
{
"c = ", c, '\n';
}
proc foo()
{
"argvec() = ", oadl::argvec(), '\n';
bar#(oadl::argvec());
}
foo("one", 2, "three")
argvec() = one 2 three
c = three