Uses of Interface
org.eclipse.collections.api.list.ParallelListIterable
-
Packages that use ParallelListIterable Package Description org.eclipse.collections.api.bag.sorted This package contains interfaces for SortedBag API.org.eclipse.collections.api.list This package contains interfaces for list API which enhance the performance and functionality ofList
.org.eclipse.collections.api.set.sorted This package contains interfaces for sorted set API.org.eclipse.collections.impl.lazy.parallel org.eclipse.collections.impl.lazy.parallel.list org.eclipse.collections.impl.lazy.parallel.set.sorted org.eclipse.collections.impl.list.immutable This package contains implementations of theImmutableList
interface.org.eclipse.collections.impl.list.mutable This package contains implementations of theMutableList
interface. -
-
Uses of ParallelListIterable in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted that return ParallelListIterable Modifier and Type Method Description <V> ParallelListIterable<V>
ParallelSortedBag. collect(Function<? super T,? extends V> function)
Creates a parallel iterable for collecting elements from the current iterable.<V> ParallelListIterable<V>
ParallelSortedBag. 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>
ParallelListIterable<V>ParallelSortedBag. collectWith(Function2<? super T,? super P,? extends V> function, P parameter)
<V> ParallelListIterable<V>
ParallelSortedBag. flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)
Creates a parallel flattening iterable for the current iterable. -
Uses of ParallelListIterable in org.eclipse.collections.api.list
Methods in org.eclipse.collections.api.list that return ParallelListIterable Modifier and Type Method Description ParallelListIterable<T>
ListIterable. asParallel(java.util.concurrent.ExecutorService executorService, int batchSize)
Returns a parallel iterable of this ListIterable.<V> ParallelListIterable<V>
ParallelListIterable. collect(Function<? super T,? extends V> function)
Creates a parallel iterable for collecting elements from the current iterable.<V> ParallelListIterable<V>
ParallelListIterable. 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>
ParallelListIterable<V>ParallelListIterable. collectWith(Function2<? super T,? super P,? extends V> function, P parameter)
<V> ParallelListIterable<V>
ParallelListIterable. flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)
Creates a parallel flattening iterable for the current iterable.ParallelListIterable<T>
ParallelListIterable. reject(Predicate<? super T> predicate)
Creates a parallel iterable for rejecting elements from the current iterable.<P> ParallelListIterable<T>
ParallelListIterable. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)
ParallelListIterable<T>
ParallelListIterable. select(Predicate<? super T> predicate)
Creates a parallel iterable for selecting elements from the current iterable.<S> ParallelListIterable<S>
ParallelListIterable. selectInstancesOf(java.lang.Class<S> clazz)
<P> ParallelListIterable<T>
ParallelListIterable. selectWith(Predicate2<? super T,? super P> predicate, P parameter)
-
Uses of ParallelListIterable in org.eclipse.collections.api.set.sorted
Methods in org.eclipse.collections.api.set.sorted that return ParallelListIterable Modifier and Type Method Description <V> ParallelListIterable<V>
ParallelSortedSetIterable. collect(Function<? super T,? extends V> function)
Creates a parallel iterable for collecting elements from the current iterable.<V> ParallelListIterable<V>
ParallelSortedSetIterable. 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>
ParallelListIterable<V>ParallelSortedSetIterable. collectWith(Function2<? super T,? super P,? extends V> function, P parameter)
<V> ParallelListIterable<V>
ParallelSortedSetIterable. flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)
Creates a parallel flattening iterable for the current iterable. -
Uses of ParallelListIterable in org.eclipse.collections.impl.lazy.parallel
Methods in org.eclipse.collections.impl.lazy.parallel that return ParallelListIterable Modifier and Type Method Description protected <A> ParallelListIterable<A>
AbstractMultiReaderParallelIterable. wrap(ParallelListIterable<A> wrapped)
protected <A> ParallelListIterable<A>
AbstractSynchronizedParallelIterable. wrap(ParallelListIterable<A> wrapped)
Methods in org.eclipse.collections.impl.lazy.parallel with parameters of type ParallelListIterable Modifier and Type Method Description protected <A> ParallelListIterable<A>
AbstractMultiReaderParallelIterable. wrap(ParallelListIterable<A> wrapped)
protected <A> ParallelListIterable<A>
AbstractSynchronizedParallelIterable. wrap(ParallelListIterable<A> wrapped)
-
Uses of ParallelListIterable in org.eclipse.collections.impl.lazy.parallel.list
Classes in org.eclipse.collections.impl.lazy.parallel.list that implement ParallelListIterable 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>
class
ParallelFlatCollectListIterable<T,V>
(package private) class
ParallelSelectListIterable<T>
class
SynchronizedParallelListIterable<T>
Methods in org.eclipse.collections.impl.lazy.parallel.list that return ParallelListIterable Modifier and Type Method Description <V> ParallelListIterable<V>
AbstractParallelListIterable. collect(Function<? super T,? extends V> function)
<V> ParallelListIterable<V>
MultiReaderParallelListIterable. collect(Function<? super T,? extends V> function)
<V> ParallelListIterable<V>
NonParallelListIterable. collect(Function<? super T,? extends V> function)
<V> ParallelListIterable<V>
SynchronizedParallelListIterable. collect(Function<? super T,? extends V> function)
<V> ParallelListIterable<V>
AbstractParallelListIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> ParallelListIterable<V>
MultiReaderParallelListIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> ParallelListIterable<V>
NonParallelListIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> ParallelListIterable<V>
SynchronizedParallelListIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<P,V>
ParallelListIterable<V>AbstractParallelListIterable. collectWith(Function2<? super T,? super P,? extends V> function, P parameter)
<P,V>
ParallelListIterable<V>MultiReaderParallelListIterable. collectWith(Function2<? super T,? super P,? extends V> function, P parameter)
<P,V>
ParallelListIterable<V>NonParallelListIterable. collectWith(Function2<? super T,? super P,? extends V> function, P parameter)
<P,V>
ParallelListIterable<V>SynchronizedParallelListIterable. collectWith(Function2<? super T,? super P,? extends V> function, P parameter)
<V> ParallelListIterable<V>
AbstractParallelListIterable. flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)
<V> ParallelListIterable<V>
MultiReaderParallelListIterable. flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)
<V> ParallelListIterable<V>
NonParallelListIterable. flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)
<V> ParallelListIterable<V>
SynchronizedParallelListIterable. flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)
ParallelListIterable<T>
AbstractParallelListIterable. reject(Predicate<? super T> predicate)
ParallelListIterable<T>
MultiReaderParallelListIterable. reject(Predicate<? super T> predicate)
ParallelListIterable<T>
NonParallelListIterable. reject(Predicate<? super T> predicate)
ParallelListIterable<T>
SynchronizedParallelListIterable. reject(Predicate<? super T> predicate)
<P> ParallelListIterable<T>
AbstractParallelListIterable. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)
<P> ParallelListIterable<T>
MultiReaderParallelListIterable. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)
<P> ParallelListIterable<T>
NonParallelListIterable. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)
<P> ParallelListIterable<T>
SynchronizedParallelListIterable. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)
ParallelListIterable<T>
AbstractParallelListIterable. select(Predicate<? super T> predicate)
ParallelListIterable<T>
MultiReaderParallelListIterable. select(Predicate<? super T> predicate)
ParallelListIterable<T>
NonParallelListIterable. select(Predicate<? super T> predicate)
ParallelListIterable<T>
SynchronizedParallelListIterable. select(Predicate<? super T> predicate)
<S> ParallelListIterable<S>
AbstractParallelListIterable. selectInstancesOf(java.lang.Class<S> clazz)
<S> ParallelListIterable<S>
MultiReaderParallelListIterable. selectInstancesOf(java.lang.Class<S> clazz)
<S> ParallelListIterable<S>
NonParallelListIterable. selectInstancesOf(java.lang.Class<S> clazz)
<S> ParallelListIterable<S>
SynchronizedParallelListIterable. selectInstancesOf(java.lang.Class<S> clazz)
<P> ParallelListIterable<T>
AbstractParallelListIterable. selectWith(Predicate2<? super T,? super P> predicate, P parameter)
<P> ParallelListIterable<T>
MultiReaderParallelListIterable. selectWith(Predicate2<? super T,? super P> predicate, P parameter)
<P> ParallelListIterable<T>
NonParallelListIterable. selectWith(Predicate2<? super T,? super P> predicate, P parameter)
<P> ParallelListIterable<T>
SynchronizedParallelListIterable. selectWith(Predicate2<? super T,? super P> predicate, P parameter)
Constructors in org.eclipse.collections.impl.lazy.parallel.list with parameters of type ParallelListIterable Constructor Description MultiReaderParallelListIterable(ParallelListIterable<T> delegate, java.util.concurrent.locks.ReadWriteLock lock)
SynchronizedParallelListIterable(ParallelListIterable<T> delegate, java.lang.Object lock)
-
Uses of ParallelListIterable in org.eclipse.collections.impl.lazy.parallel.set.sorted
Methods in org.eclipse.collections.impl.lazy.parallel.set.sorted that return ParallelListIterable Modifier and Type Method Description <V> ParallelListIterable<V>
AbstractParallelSortedSetIterable. collect(Function<? super T,? extends V> function)
<V> ParallelListIterable<V>
NonParallelSortedSetIterable. collect(Function<? super T,? extends V> function)
<V> ParallelListIterable<V>
SynchronizedParallelSortedSetIterable. collect(Function<? super T,? extends V> function)
<V> ParallelListIterable<V>
AbstractParallelSortedSetIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> ParallelListIterable<V>
NonParallelSortedSetIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<V> ParallelListIterable<V>
SynchronizedParallelSortedSetIterable. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)
<P,V>
ParallelListIterable<V>AbstractParallelSortedSetIterable. collectWith(Function2<? super T,? super P,? extends V> function, P parameter)
<P,V>
ParallelListIterable<V>NonParallelSortedSetIterable. collectWith(Function2<? super T,? super P,? extends V> function, P parameter)
<P,V>
ParallelListIterable<V>SynchronizedParallelSortedSetIterable. collectWith(Function2<? super T,? super P,? extends V> function, P parameter)
<V> ParallelListIterable<V>
AbstractParallelSortedSetIterable. flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)
<V> ParallelListIterable<V>
NonParallelSortedSetIterable. flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)
<V> ParallelListIterable<V>
SynchronizedParallelSortedSetIterable. flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)
-
Uses of ParallelListIterable in org.eclipse.collections.impl.list.immutable
Methods in org.eclipse.collections.impl.list.immutable that return ParallelListIterable Modifier and Type Method Description ParallelListIterable<T>
AbstractImmutableList. asParallel(java.util.concurrent.ExecutorService executorService, int batchSize)
-
Uses of ParallelListIterable in org.eclipse.collections.impl.list.mutable
Methods in org.eclipse.collections.impl.list.mutable that return ParallelListIterable Modifier and Type Method Description ParallelListIterable<T>
AbstractListAdapter. asParallel(java.util.concurrent.ExecutorService executorService, int batchSize)
ParallelListIterable<T>
AbstractMutableList. asParallel(java.util.concurrent.ExecutorService executorService, int batchSize)
ParallelListIterable<E>
CompositeFastList. asParallel(java.util.concurrent.ExecutorService executorService, int batchSize)
ParallelListIterable<T>
ListAdapter. asParallel(java.util.concurrent.ExecutorService executorService, int batchSize)
ParallelListIterable<T>
MultiReaderFastList. asParallel(java.util.concurrent.ExecutorService executorService, int batchSize)
ParallelListIterable<T>
MultiReaderFastList.UntouchableMutableList. asParallel(java.util.concurrent.ExecutorService executorService, int batchSize)
ParallelListIterable<T>
SynchronizedMutableList. asParallel(java.util.concurrent.ExecutorService executorService, int batchSize)
ParallelListIterable<T>
UnmodifiableMutableList. asParallel(java.util.concurrent.ExecutorService executorService, int batchSize)
-