util_lmember_p

one of the documented procedures in this installation of the ACS
Usage:
util_lmember_p   value   list
What it does:
is value an element in the list
Defined in: /web/philip/tcl/utils-extra.tcl

Source code:



    if { [lsearch -exact $list $value] > -1 } {
	return 1
    }
    return 0


philg@mit.edu