Package | Description |
---|---|
org.eclipse.collections.api.bag |
This package contains interfaces for Bag API.
|
org.eclipse.collections.impl.bag.mutable |
This package contains implementations of the
MutableBag interface. |
org.eclipse.collections.impl.lazy.parallel.bag |
Modifier and Type | Method | Description |
---|---|---|
<V> ParallelUnsortedBag<V> |
ParallelUnsortedBag.collect(Function<? super T,? extends V> function) |
Creates a parallel iterable for collecting elements from the current iterable.
|
<V> ParallelUnsortedBag<V> |
ParallelUnsortedBag.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function) |
Creates a parallel iterable for selecting and collecting elements from the current iterable.
|
<P,V> ParallelUnsortedBag<V> |
ParallelUnsortedBag.collectWith(Function2<? super T,? super P,? extends V> function,
P parameter) |
|
<V> ParallelUnsortedBag<V> |
ParallelUnsortedBag.flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function) |
Creates a parallel flattening iterable for the current iterable.
|
ParallelUnsortedBag<T> |
ParallelUnsortedBag.reject(Predicate<? super T> predicate) |
Creates a parallel iterable for rejecting elements from the current iterable.
|
<P> ParallelUnsortedBag<T> |
ParallelUnsortedBag.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
|
ParallelUnsortedBag<T> |
ParallelUnsortedBag.select(Predicate<? super T> predicate) |
Creates a parallel iterable for selecting elements from the current iterable.
|
<S> ParallelUnsortedBag<S> |
ParallelUnsortedBag.selectInstancesOf(java.lang.Class<S> clazz) |
|
<P> ParallelUnsortedBag<T> |
ParallelUnsortedBag.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
Modifier and Type | Method | Description |
---|---|---|
ParallelUnsortedBag<T> |
AbstractMutableBag.asParallel(java.util.concurrent.ExecutorService executorService,
int batchSize) |
Modifier and Type | Class | Description |
---|---|---|
class |
AbstractParallelUnsortedBag<T,B extends UnsortedBagBatch<T>> |
|
class |
NonParallelUnsortedBag<T> |
|
class |
ParallelCollectUnsortedBag<T,V> |
Modifier and Type | Method | Description |
---|---|---|
<V> ParallelUnsortedBag<V> |
AbstractParallelUnsortedBag.collect(Function<? super T,? extends V> function) |
|
<V> ParallelUnsortedBag<V> |
NonParallelUnsortedBag.collect(Function<? super T,? extends V> function) |
|
<V> ParallelUnsortedBag<V> |
AbstractParallelUnsortedBag.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function) |
|
<V> ParallelUnsortedBag<V> |
NonParallelUnsortedBag.collectIf(Predicate<? super T> predicate,
Function<? super T,? extends V> function) |
|
<P,V> ParallelUnsortedBag<V> |
AbstractParallelUnsortedBag.collectWith(Function2<? super T,? super P,? extends V> function,
P parameter) |
|
<P,V> ParallelUnsortedBag<V> |
NonParallelUnsortedBag.collectWith(Function2<? super T,? super P,? extends V> function,
P parameter) |
|
<V> ParallelUnsortedBag<V> |
AbstractParallelUnsortedBag.flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function) |
|
<V> ParallelUnsortedBag<V> |
NonParallelUnsortedBag.flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function) |
|
ParallelUnsortedBag<T> |
AbstractParallelUnsortedBag.reject(Predicate<? super T> predicate) |
|
ParallelUnsortedBag<T> |
NonParallelUnsortedBag.reject(Predicate<? super T> predicate) |
|
<P> ParallelUnsortedBag<T> |
AbstractParallelUnsortedBag.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
|
<P> ParallelUnsortedBag<T> |
NonParallelUnsortedBag.rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
|
ParallelUnsortedBag<T> |
AbstractParallelUnsortedBag.select(Predicate<? super T> predicate) |
|
ParallelUnsortedBag<T> |
NonParallelUnsortedBag.select(Predicate<? super T> predicate) |
|
<S> ParallelUnsortedBag<S> |
AbstractParallelUnsortedBag.selectInstancesOf(java.lang.Class<S> clazz) |
|
<S> ParallelUnsortedBag<S> |
NonParallelUnsortedBag.selectInstancesOf(java.lang.Class<S> clazz) |
|
<P> ParallelUnsortedBag<T> |
AbstractParallelUnsortedBag.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
|
<P> ParallelUnsortedBag<T> |
NonParallelUnsortedBag.selectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
Copyright © 2004–2017. All rights reserved.