ParallelSortedSetIterable<T> |
SortedSetIterable.asParallel(ExecutorService executorService,
int batchSize) |
Returns a parallel iterable of this SortedSetIterable.
|
ParallelSortedSetIterable<T> |
ParallelSortedSetIterable.asUnique() |
|
ParallelSortedSetIterable<T> |
ParallelSortedSetIterable.reject(Predicate<? super T> predicate) |
Creates a parallel iterable for rejecting elements from the current iterable.
|
<P> ParallelSortedSetIterable<T> |
ParallelSortedSetIterable.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
|
ParallelSortedSetIterable<T> |
ParallelSortedSetIterable.select(Predicate<? super T> predicate) |
Creates a parallel iterable for selecting elements from the current iterable.
|
<S> ParallelSortedSetIterable<S> |
ParallelSortedSetIterable.selectInstancesOf(Class<S> clazz) |
|
<P> ParallelSortedSetIterable<T> |
ParallelSortedSetIterable.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
|