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. -
-
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 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(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 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(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 Iterable<V>> function)Creates a parallel flattening iterable for the current iterable.
-