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 interfaceParallelBag<T>interfaceParallelUnsortedBag<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 interfaceParallelSortedBag<T> -
Uses of ParallelIterable in org.eclipse.collections.api.list
Subinterfaces of ParallelIterable in org.eclipse.collections.api.list Modifier and Type Interface Description interfaceParallelListIterable<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 interfaceParallelSetIterable<T>interfaceParallelUnsortedSetIterable<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 interfaceParallelSortedSetIterable<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 classAbstractMultiReaderParallelIterable<T,PI extends ParallelIterable<T>>classAbstractSynchronizedParallelIterable<T,PI extends ParallelIterable<T>>Classes in org.eclipse.collections.impl.lazy.parallel that implement ParallelIterable Modifier and Type Class Description classAbstractMultiReaderParallelIterable<T,PI extends ParallelIterable<T>>classAbstractParallelIterable<T,B extends Batch<T>>classAbstractParallelIterableImpl<T,B extends Batch<T>>classAbstractSynchronizedParallelIterable<T,PI extends ParallelIterable<T>>classMultiReaderParallelIterable<T>classNonParallelIterable<T,RI extends RichIterable<T>>classParallelDistinctIterable<T>classParallelSelectIterable<T>classSynchronizedParallelIterable<T>Fields in org.eclipse.collections.impl.lazy.parallel declared as ParallelIterable Modifier and Type Field Description protected PIAbstractMultiReaderParallelIterable. delegateprotected PIAbstractSynchronizedParallelIterable. delegateMethods 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 classAbstractParallelUnsortedBag<T,B extends UnsortedBagBatch<T>>classNonParallelUnsortedBag<T>classParallelCollectUnsortedBag<T,V>(package private) classParallelSelectUnsortedBag<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 classAbstractParallelListIterable<T,B extends ListBatch<T>>classListIterableParallelIterable<T>classMultiReaderParallelListIterable<T>classNonParallelListIterable<T>classParallelCollectListIterable<T,V>(package private) classParallelDistinctListIterable<T>classParallelFlatCollectListIterable<T,V>(package private) classParallelSelectListIterable<T>classSynchronizedParallelListIterable<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 classAbstractParallelUnsortedSetIterable<T,B extends UnsortedSetBatch<T>>classMultiReaderParallelUnsortedSetIterable<T>classNonParallelUnsortedSetIterable<T>classParallelCollectIterable<T,V>classParallelFlatCollectIterable<T,V>(package private) classParallelSelectUnsortedSetIterable<T>classSynchronizedParallelUnsortedSetIterable<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 classAbstractParallelSortedSetIterable<T,B extends SortedSetBatch<T>>classNonParallelSortedSetIterable<T>(package private) classParallelSelectSortedSetIterable<T>classSynchronizedParallelSortedSetIterable<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 classUnifiedSet.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 classImmutableTreeSet.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 classUnifiedSetWithHashingStrategy.UnifiedSetParallelUnsortedIterable
-