split_at

one of the documented procedures in this installation of the ACS
Usage:
split_at   n   xs
What it does:
splits a list using take and drop
Defined in: /web/philip/tcl/ad-functional.tcl

Source code:


    list [take $n $xs] [drop $n $xs]


philg@mit.edu