Uses of Interface
org.eclipse.collections.api.ParallelIterable
-
Packages that use ParallelIterable Package Description org.eclipse.collections.api This package contains interfaces for Eclipse Collections API.org.eclipse.collections.api.bag This package contains interfaces for Bag API.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 This package contains interfaces for set API which enhance the performance and functionality ofSet.org.eclipse.collections.api.set.sorted This package contains interfaces for sorted set API. -
-
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 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(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>
-