NAME

oadl::argvec - return a List containing all the arguments passed to the current procedure

SYNOPSIS

oadl::argvec()

DESCRIPTION

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).

RETURN VALUE

A List containing all the arguments passed to the current procedure

ERRORS

None

EXAMPLE

    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

SEE ALSO

arg
nargs