filter pred xsWhat it does:
returns all elements of xs that fulfill the predicate predDefined in: /web/philip/tcl/ad-functional.tcl
Source code:
set result {}
foreach x $xs {
if { [eval_unary $pred $x] } {
lappend result $x
}
}
return $result