Uses of Interface
org.eclipse.collections.api.ParallelIterable
-
-
Uses of ParallelIterable in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return ParallelIterable Modifier and Type Method Description ParallelIterable<T>
ParallelIterable. asUnique()
<V> ParallelIterable<V>
ParallelIterable. collect(Function<? super T,? extends V> function)
Creates a parallel iterable for collecting elements from the current iterable.<V> ParallelIterable<V>
ParallelIterable. 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>
ParallelIterable<V>ParallelIterable. collectWith(Function2<? super T,? super P,? extends V> function, P parameter)
<V> ParallelIterable<V>
ParallelIterable. flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)
Creates a parallel flattening iterable for the current iterable.ParallelIterable<T>
ParallelIterable. reject(Predicate<? super T> predicate)
Creates a parallel iterable for rejecting elements from the current iterable.<P> ParallelIterable<T>
ParallelIterable. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)
ParallelIterable<T>
ParallelIterable. select(Predicate<? super T> predicate)
Creates a parallel iterable for selecting elements from the current iterable.<S> ParallelIterable<S>
ParallelIterable. selectInstancesOf(java.lang.Class<S> clazz)
<P> ParallelIterable<T>
ParallelIterable. selectWith(Predicate2<? super T,? super P> predicate, P parameter)
-
Uses of ParallelIterable in org.eclipse.collections.api.bag
Subinterfaces of ParallelIterable in org.eclipse.collections.api.bag Modifier and Type Interface Description interface
ParallelBag<T>
interface
ParallelUnsortedBag<T>
-
Uses of ParallelIterable in org.eclipse.collections.api.bag.sorted
Subinterfaces of ParallelIterable in org.eclipse.collections.api.bag.sorted Modifier and Type Interface Description interface
ParallelSortedBag<T>
-
Uses of ParallelIterable in org.eclipse.collections.api.list
Subinterfaces of ParallelIterable in org.eclipse.collections.api.list Modifier and Type Interface Description interface
ParallelListIterable<T>
A ParallelIterable is RichIterable which will defer evaluation for certain methods like select, reject, collect, etc. -
Uses of ParallelIterable in org.eclipse.collections.api.set
Subinterfaces of ParallelIterable in org.eclipse.collections.api.set Modifier and Type Interface Description interface
ParallelSetIterable<T>
interface
ParallelUnsortedSetIterable<T>
A ParallelIterable is RichIterable which will defer evaluation for certain methods like select, reject, collect, etc. -
Uses of ParallelIterable in org.eclipse.collections.api.set.sorted
Subinterfaces of ParallelIterable in org.eclipse.collections.api.set.sorted Modifier and Type Interface Description interface
ParallelSortedSetIterable<T>
-
Uses of ParallelIterable in org.eclipse.collections.impl.lazy.parallel
Classes in org.eclipse.collections.impl.lazy.parallel with type parameters of type ParallelIterable Modifier and Type Class Description class
AbstractMultiReaderParallelIterable<T,PI extends ParallelIterable<T>>
class
AbstractSynchronizedParallelIterable<T,PI extends ParallelIterable<T>>
Classes in org.eclipse.collections.impl.lazy.parallel that implement ParallelIterable Modifier and Type Class Description class
AbstractMultiReaderParallelIterable<T,PI extends ParallelIterable<T>>
class
AbstractParallelIterable<T,B extends Batch<T>>
class
AbstractParallelIterableImpl<T,B extends Batch<T>>
class
AbstractSynchronizedParallelIterable<T,PI extends ParallelIterable<T>>
class
MultiReaderParallelIterable<T>
class
NonParallelIterable<T,RI extends RichIterable<T>>
class
ParallelDistinctIterable<T>
class
ParallelSelectIterable<T>
class
SynchronizedParallelIterable<T>
Fields in org.eclipse.collections.impl.lazy.parallel declared as ParallelIterable Modifier and Type Field Description protected PI
AbstractMultiReaderParallelIterable. delegate
protected PI
AbstractSynchronizedParallelIterable. delegate
Methods in org.eclipse.collections.impl.lazy.parallel that return ParallelIterable Modifier and Type Method Description ParallelIterable<T>
MultiReaderParallelIterable. asUnique()
ParallelIterable<T>
SynchronizedParallelIterable. asUnique()
<V> ParallelIterable<V>
AbstractParallelIterableImpl. collect(Function<? super T,? extends V> function)
<V> ParallelIterable<V>
MultiReaderParallelIterable. collect(Function<? super T,? extends V> function)
<V> ParallelIterable<V>
SynchronizedParallelIterable. collect(Function<? super T,? extends V> function)
<V> ParallelIterable<V>
AbstractParallelIterableImpl. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> ParallelIterable<V>
MultiReaderParallelIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> ParallelIterable<V>
SynchronizedParallelIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<P,V>
ParallelIterable<V>AbstractParallelIterableImpl. collectWith(Function2<? super T,? super P,? extends V> function, P parameter)
<P,V>
ParallelIterable<V>MultiReaderParallelIterable. collectWith(Function2<? super T,? super P,? extends V> function, P parameter)
<P,V>
ParallelIterable<V>SynchronizedParallelIterable. collectWith(Function2<? super T,? super P,? extends V> function, P parameter)
<V> ParallelIterable<V>
AbstractParallelIterableImpl. flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)
<V> ParallelIterable<V>
MultiReaderParallelIterable. flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)
<V> ParallelIterable<V>
SynchronizedParallelIterable. flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)
ParallelIterable<T>
AbstractParallelIterableImpl. reject(Predicate<? super T> predicate)
ParallelIterable<T>
MultiReaderParallelIterable. reject(Predicate<? super T> predicate)
ParallelIterable<T>
SynchronizedParallelIterable. reject(Predicate<? super T> predicate)
<P> ParallelIterable<T>
AbstractParallelIterableImpl. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)
<P> ParallelIterable<T>
MultiReaderParallelIterable. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)
<P> ParallelIterable<T>
SynchronizedParallelIterable. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)
ParallelIterable<T>
AbstractParallelIterableImpl. select(Predicate<? super T> predicate)
ParallelIterable<T>
MultiReaderParallelIterable. select(Predicate<? super T> predicate)
ParallelIterable<T>
SynchronizedParallelIterable. select(Predicate<? super T> predicate)
<S> ParallelIterable<S>
AbstractParallelIterableImpl. selectInstancesOf(java.lang.Class<S> clazz)
<S> ParallelIterable<S>
MultiReaderParallelIterable. selectInstancesOf(java.lang.Class<S> clazz)
<S> ParallelIterable<S>
SynchronizedParallelIterable. selectInstancesOf(java.lang.Class<S> clazz)
<P> ParallelIterable<T>
AbstractParallelIterableImpl. selectWith(Predicate2<? super T,? super P> predicate, P parameter)
<P> ParallelIterable<T>
MultiReaderParallelIterable. selectWith(Predicate2<? super T,? super P> predicate, P parameter)
<P> ParallelIterable<T>
SynchronizedParallelIterable. selectWith(Predicate2<? super T,? super P> predicate, P parameter)
protected <A> ParallelIterable<A>
AbstractMultiReaderParallelIterable. wrap(ParallelIterable<A> wrapped)
protected <A> ParallelIterable<A>
AbstractSynchronizedParallelIterable. wrap(ParallelIterable<A> wrapped)
Methods in org.eclipse.collections.impl.lazy.parallel with parameters of type ParallelIterable Modifier and Type Method Description protected <A> ParallelIterable<A>
AbstractMultiReaderParallelIterable. wrap(ParallelIterable<A> wrapped)
protected <A> ParallelIterable<A>
AbstractSynchronizedParallelIterable. wrap(ParallelIterable<A> wrapped)
Constructors in org.eclipse.collections.impl.lazy.parallel with parameters of type ParallelIterable Constructor Description MultiReaderParallelIterable(ParallelIterable<T> delegate, java.util.concurrent.locks.ReadWriteLock lock)
SynchronizedParallelIterable(ParallelIterable<T> delegate, java.lang.Object lock)
-
Uses of ParallelIterable in org.eclipse.collections.impl.lazy.parallel.bag
Classes in org.eclipse.collections.impl.lazy.parallel.bag that implement ParallelIterable Modifier and Type Class Description class
AbstractParallelUnsortedBag<T,B extends UnsortedBagBatch<T>>
class
NonParallelUnsortedBag<T>
class
ParallelCollectUnsortedBag<T,V>
(package private) class
ParallelSelectUnsortedBag<T>
-
Uses of ParallelIterable in org.eclipse.collections.impl.lazy.parallel.list
Classes in org.eclipse.collections.impl.lazy.parallel.list that implement ParallelIterable Modifier and Type Class Description class
AbstractParallelListIterable<T,B extends ListBatch<T>>
class
ListIterableParallelIterable<T>
class
MultiReaderParallelListIterable<T>
class
NonParallelListIterable<T>
class
ParallelCollectListIterable<T,V>
(package private) class
ParallelDistinctListIterable<T>
class
ParallelFlatCollectListIterable<T,V>
(package private) class
ParallelSelectListIterable<T>
class
SynchronizedParallelListIterable<T>
-
Uses of ParallelIterable in org.eclipse.collections.impl.lazy.parallel.set
Classes in org.eclipse.collections.impl.lazy.parallel.set that implement ParallelIterable Modifier and Type Class Description class
AbstractParallelUnsortedSetIterable<T,B extends UnsortedSetBatch<T>>
class
MultiReaderParallelUnsortedSetIterable<T>
class
NonParallelUnsortedSetIterable<T>
class
ParallelCollectIterable<T,V>
class
ParallelFlatCollectIterable<T,V>
(package private) class
ParallelSelectUnsortedSetIterable<T>
class
SynchronizedParallelUnsortedSetIterable<T>
Methods in org.eclipse.collections.impl.lazy.parallel.set that return ParallelIterable Modifier and Type Method Description <V> ParallelIterable<V>
AbstractParallelUnsortedSetIterable. collect(Function<? super T,? extends V> function)
<V> ParallelIterable<V>
MultiReaderParallelUnsortedSetIterable. collect(Function<? super T,? extends V> function)
<V> ParallelIterable<V>
NonParallelUnsortedSetIterable. collect(Function<? super T,? extends V> function)
<V> ParallelIterable<V>
SynchronizedParallelUnsortedSetIterable. collect(Function<? super T,? extends V> function)
<V> ParallelIterable<V>
AbstractParallelUnsortedSetIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> ParallelIterable<V>
MultiReaderParallelUnsortedSetIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> ParallelIterable<V>
NonParallelUnsortedSetIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> ParallelIterable<V>
SynchronizedParallelUnsortedSetIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<P,V>
ParallelIterable<V>AbstractParallelUnsortedSetIterable. collectWith(Function2<? super T,? super P,? extends V> function, P parameter)
<P,V>
ParallelIterable<V>MultiReaderParallelUnsortedSetIterable. collectWith(Function2<? super T,? super P,? extends V> function, P parameter)
<P,V>
ParallelIterable<V>NonParallelUnsortedSetIterable. collectWith(Function2<? super T,? super P,? extends V> function, P parameter)
<P,V>
ParallelIterable<V>SynchronizedParallelUnsortedSetIterable. collectWith(Function2<? super T,? super P,? extends V> function, P parameter)
<V> ParallelIterable<V>
AbstractParallelUnsortedSetIterable. flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)
<V> ParallelIterable<V>
MultiReaderParallelUnsortedSetIterable. flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)
<V> ParallelIterable<V>
NonParallelUnsortedSetIterable. flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)
<V> ParallelIterable<V>
SynchronizedParallelUnsortedSetIterable. flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)
-
Uses of ParallelIterable in org.eclipse.collections.impl.lazy.parallel.set.sorted
Classes in org.eclipse.collections.impl.lazy.parallel.set.sorted that implement ParallelIterable Modifier and Type Class Description class
AbstractParallelSortedSetIterable<T,B extends SortedSetBatch<T>>
class
NonParallelSortedSetIterable<T>
(package private) class
ParallelSelectSortedSetIterable<T>
class
SynchronizedParallelSortedSetIterable<T>
-
Uses of ParallelIterable in org.eclipse.collections.impl.set.mutable
Classes in org.eclipse.collections.impl.set.mutable that implement ParallelIterable Modifier and Type Class Description private class
UnifiedSet.UnifiedSetParallelUnsortedIterable
-
Uses of ParallelIterable in org.eclipse.collections.impl.set.sorted.immutable
Classes in org.eclipse.collections.impl.set.sorted.immutable that implement ParallelIterable Modifier and Type Class Description private class
ImmutableTreeSet.SortedSetIterableParallelIterable
-
Uses of ParallelIterable in org.eclipse.collections.impl.set.strategy.mutable
Classes in org.eclipse.collections.impl.set.strategy.mutable that implement ParallelIterable Modifier and Type Class Description private class
UnifiedSetWithHashingStrategy.UnifiedSetParallelUnsortedIterable
-