apply

one of the documented procedures in this installation of the ACS
Usage:
apply   func   arglist
What it does:
Evaluates the first argument with ARGLIST as its arguments, in the environment of its caller. Analogous to the Lisp function of the same name.
Defined in: /web/philip/packages/acs-core/utilities-procs.tcl

Source code:


    set func_and_args [concat $func $arglist]
    return [uplevel $func_and_args]


philg@mit.edu