| Package | Description |
|---|---|
| org.eclipse.collections.api.bag |
This package contains interfaces for Bag API.
|
| org.eclipse.collections.api.list |
This package contains interfaces for list API which enhance the performance and functionality of
List. |
| org.eclipse.collections.api.set |
This package contains interfaces for set API which enhance the performance and functionality of
Set. |
| Modifier and Type | Method and Description |
|---|---|
ParallelUnsortedSetIterable<T> |
ParallelUnsortedBag.asUnique() |
| Modifier and Type | Method and Description |
|---|---|
ParallelUnsortedSetIterable<T> |
ParallelListIterable.asUnique() |
| Modifier and Type | Method and Description |
|---|---|
ParallelUnsortedSetIterable<T> |
UnsortedSetIterable.asParallel(ExecutorService executorService,
int batchSize) |
ParallelUnsortedSetIterable<T> |
ParallelUnsortedSetIterable.asUnique() |
ParallelUnsortedSetIterable<T> |
ParallelUnsortedSetIterable.reject(Predicate<? super T> predicate)
Creates a parallel iterable for rejecting elements from the current iterable.
|
<P> ParallelUnsortedSetIterable<T> |
ParallelUnsortedSetIterable.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
ParallelUnsortedSetIterable<T> |
ParallelUnsortedSetIterable.select(Predicate<? super T> predicate)
Creates a parallel iterable for selecting elements from the current iterable.
|
<S> ParallelUnsortedSetIterable<S> |
ParallelUnsortedSetIterable.selectInstancesOf(Class<S> clazz) |
<P> ParallelUnsortedSetIterable<T> |
ParallelUnsortedSetIterable.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
Copyright © 2004–2022. All rights reserved.