Class FilterTask<L extends Iterable<A>,A>

All Implemented Interfaces:
PersistTask<L,Iterable<A>>

@Deprecated public final class FilterTask<L extends Iterable<A>,A> extends PersistListTask<L,A>
Deprecated.
please use api from exec package
A task that takes a list of elements and applies a given predicate-task to this list returning a new list of those elements that satisfy the predicate.

The predicate is seen as satisfied, iff the task returns true for the given input (a null result is mapped to false).