lmap

one of the documented procedures in this installation of the ACS
Usage:
lmap   list   proc_name
What it does:
Applies proc_name to each item of the list, appending the result of each call to a new list that is the return value.
Defined in: /web/philip/packages/acs-core/utilities-procs.tcl

Source code:


    set lmap [list]
    foreach item $list {
	lappend lmap [safe_eval $proc_name $item]
    }
    return $lmap


philg@mit.edu