tree_map

one of the documented procedures in this installation of the ACS
Usage:
tree_map   func   tree
What it does:
applies a function to each element of a tree
Defined in: /web/philip/tcl/ad-trees.tcl

Source code:


    set root [eval_unary $func [head $tree]]
    set subtrees [map "tree_map $func" [tail $tree]]
    cons $root $subtrees


philg@mit.edu