f::drop_while (public)

 f::drop_while p xs

Defined in packages/acs-tcl/tcl/ad-functional-procs.tcl

Parameters:
p (required)
xs (required)
Returns:
the remaining portion of the list

Testcases:
functional_api
Source code:
    set index 0
    foreach x $xs {
        if { ![$p $x] } { break }
        incr index
    }
    drop $index $xs
XQL Not present:
Generic, PostgreSQL, Oracle
[ hide source ] | [ make this the default ]
Show another procedure: