lmap list proc_nameWhat 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