| Package | Description |
|---|---|
| org.eclipse.collections.api.set |
This package contains interfaces for set API which enhance the performance and functionality of
Set. |
| org.eclipse.collections.api.set.sorted |
This package contains interfaces for sorted set API.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
ParallelUnsortedSetIterable<T>
A ParallelIterable is RichIterable which will defer evaluation for certain methods like select, reject, collect, etc.
|
| Modifier and Type | Method and Description |
|---|---|
ParallelSetIterable<T> |
SetIterable.asParallel(ExecutorService executorService,
int batchSize)
Returns a parallel iterable of this SetIterable.
|
ParallelSetIterable<T> |
ParallelSetIterable.asUnique() |
ParallelSetIterable<T> |
ParallelSetIterable.reject(Predicate<? super T> predicate)
Creates a parallel iterable for rejecting elements from the current iterable.
|
<P> ParallelSetIterable<T> |
ParallelSetIterable.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
ParallelSetIterable<T> |
ParallelSetIterable.select(Predicate<? super T> predicate)
Creates a parallel iterable for selecting elements from the current iterable.
|
<S> ParallelSetIterable<S> |
ParallelSetIterable.selectInstancesOf(Class<S> clazz) |
<P> ParallelSetIterable<T> |
ParallelSetIterable.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
| Modifier and Type | Interface and Description |
|---|---|
interface |
ParallelSortedSetIterable<T> |
Copyright © 2004–2022. All rights reserved.