f::drop_while (public)

 f::drop_while p xs

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

Parameters:
p
xs
Returns:
the remaining portion of the list

Partial Call Graph (max 5 caller/called nodes):
%3 test_functional_api functional_api (test acs-tcl) f::drop_while f::drop_while test_functional_api->f::drop_while f::drop f::drop (public) f::drop_while->f::drop f::span f::span (public) f::span->f::drop_while

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: