Uses of Interface
org.eclipse.collections.api.ParallelIterable
Packages that use ParallelIterable
Package
Description
This package contains interfaces for Eclipse Collections API.
This package contains interfaces for Bag API.
This package contains interfaces for SortedBag API.
This package contains interfaces for list API which enhance the performance and functionality of
List.This package contains interfaces for set API which enhance the performance and functionality of
Set.This package contains interfaces for sorted set API.
-
Uses of ParallelIterable in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return ParallelIterableModifier and TypeMethodDescriptionParallelIterable.asUnique()<V> ParallelIterable<V> 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 Iterable<V>> function) Creates a parallel flattening iterable for the current iterable.Creates a parallel iterable for rejecting elements from the current iterable.<P> ParallelIterable<T> ParallelIterable.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) Creates a parallel iterable for selecting elements from the current iterable.<S> ParallelIterable<S> ParallelIterable.selectInstancesOf(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 -
Uses of ParallelIterable in org.eclipse.collections.api.bag.sorted
Subinterfaces of ParallelIterable in org.eclipse.collections.api.bag.sorted -
Uses of ParallelIterable in org.eclipse.collections.api.list
Subinterfaces of ParallelIterable in org.eclipse.collections.api.listModifier and TypeInterfaceDescriptioninterfaceA 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.setModifier and TypeInterfaceDescriptioninterfaceinterfaceA 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 -
Uses of ParallelIterable in org.eclipse.collections.impl.lazy.parallel
Classes in org.eclipse.collections.impl.lazy.parallel with type parameters of type ParallelIterableModifier and TypeClassDescriptionclassAbstractMultiReaderParallelIterable<T, PI extends ParallelIterable<T>>classAbstractSynchronizedParallelIterable<T, PI extends ParallelIterable<T>>Classes in org.eclipse.collections.impl.lazy.parallel that implement ParallelIterableModifier and TypeClassDescriptionclassAbstractMultiReaderParallelIterable<T, PI extends ParallelIterable<T>>classAbstractParallelIterable<T, B extends Batch<T>>classAbstractParallelIterableImpl<T, B extends Batch<T>>classAbstractSynchronizedParallelIterable<T, PI extends ParallelIterable<T>>final classclassNonParallelIterable<T, RI extends RichIterable<T>>classclassfinal classSubclasses with type arguments of type ParallelIterable in org.eclipse.collections.impl.lazy.parallelModifier and TypeClassDescriptionfinal classfinal classFields in org.eclipse.collections.impl.lazy.parallel declared as ParallelIterableModifier and TypeFieldDescriptionprotected final PIAbstractMultiReaderParallelIterable.delegateprotected final PIAbstractSynchronizedParallelIterable.delegateMethods in org.eclipse.collections.impl.lazy.parallel that return ParallelIterableModifier and TypeMethodDescriptionMultiReaderParallelIterable.asUnique()SynchronizedParallelIterable.asUnique()<V> ParallelIterable<V> <V> ParallelIterable<V> <V> ParallelIterable<V> <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 Iterable<V>> function) <V> ParallelIterable<V> MultiReaderParallelIterable.flatCollect(Function<? super T, ? extends Iterable<V>> function) <V> ParallelIterable<V> SynchronizedParallelIterable.flatCollect(Function<? super T, ? extends Iterable<V>> function) <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) <S> ParallelIterable<S> AbstractParallelIterableImpl.selectInstancesOf(Class<S> clazz) <S> ParallelIterable<S> MultiReaderParallelIterable.selectInstancesOf(Class<S> clazz) <S> ParallelIterable<S> SynchronizedParallelIterable.selectInstancesOf(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 ParallelIterableModifier and TypeMethodDescriptionprotected <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 ParallelIterableModifierConstructorDescriptionMultiReaderParallelIterable(ParallelIterable<T> delegate, ReadWriteLock lock) SynchronizedParallelIterable(ParallelIterable<T> delegate, Object lock) -
Uses of ParallelIterable in org.eclipse.collections.impl.lazy.parallel.bag
Classes in org.eclipse.collections.impl.lazy.parallel.bag that implement ParallelIterableModifier and TypeClassDescriptionclassAbstractParallelUnsortedBag<T, B extends UnsortedBagBatch<T>>classclass -
Uses of ParallelIterable in org.eclipse.collections.impl.lazy.parallel.list
Classes in org.eclipse.collections.impl.lazy.parallel.list that implement ParallelIterableModifier and TypeClassDescriptionclassAbstractParallelListIterable<T, B extends ListBatch<T>>final classfinal classclassclassclassfinal class -
Uses of ParallelIterable in org.eclipse.collections.impl.lazy.parallel.set
Classes in org.eclipse.collections.impl.lazy.parallel.set that implement ParallelIterableModifier and TypeClassDescriptionclassAbstractParallelUnsortedSetIterable<T, B extends UnsortedSetBatch<T>>final classclassclassclassfinal classMethods in org.eclipse.collections.impl.lazy.parallel.set that return ParallelIterableModifier and TypeMethodDescription<V> ParallelIterable<V> <V> ParallelIterable<V> <V> ParallelIterable<V> <V> ParallelIterable<V> <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 Iterable<V>> function) <V> ParallelIterable<V> MultiReaderParallelUnsortedSetIterable.flatCollect(Function<? super T, ? extends Iterable<V>> function) <V> ParallelIterable<V> NonParallelUnsortedSetIterable.flatCollect(Function<? super T, ? extends Iterable<V>> function) <V> ParallelIterable<V> SynchronizedParallelUnsortedSetIterable.flatCollect(Function<? super T, ? extends 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 ParallelIterableModifier and TypeClassDescriptionclassAbstractParallelSortedSetIterable<T, B extends SortedSetBatch<T>>classfinal class