drop_while

one of the documented procedures in this installation of the ACS
Usage:
drop_while   p   xs
What it does:
returns the remaining portion of the list
Defined in: /web/philip/tcl/ad-functional.tcl

Source code:


    set index 0    
    foreach x $xs {
	if { ![eval_unary $p $x] } { break }
	incr index
    }
    drop $index $xs


philg@mit.edu