Uses of Interface
org.eclipse.collections.api.bag.ParallelUnsortedBag
-
Packages that use ParallelUnsortedBag Package Description org.eclipse.collections.api.bag This package contains interfaces for Bag API.org.eclipse.collections.impl.bag.mutable This package contains implementations of theMutableBaginterface.org.eclipse.collections.impl.lazy.parallel.bag -
-
Uses of ParallelUnsortedBag in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag that return ParallelUnsortedBag Modifier and Type Method Description <V> ParallelUnsortedBag<V>ParallelUnsortedBag. collect(Function<? super T,? extends V> function)Creates a parallel iterable for collecting elements from the current iterable.<V> ParallelUnsortedBag<V>ParallelUnsortedBag. 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>
ParallelUnsortedBag<V>ParallelUnsortedBag. collectWith(Function2<? super T,? super P,? extends V> function, P parameter)<V> ParallelUnsortedBag<V>ParallelUnsortedBag. flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)Creates a parallel flattening iterable for the current iterable.ParallelUnsortedBag<T>ParallelUnsortedBag. reject(Predicate<? super T> predicate)Creates a parallel iterable for rejecting elements from the current iterable.<P> ParallelUnsortedBag<T>ParallelUnsortedBag. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)ParallelUnsortedBag<T>ParallelUnsortedBag. select(Predicate<? super T> predicate)Creates a parallel iterable for selecting elements from the current iterable.<S> ParallelUnsortedBag<S>ParallelUnsortedBag. selectInstancesOf(java.lang.Class<S> clazz)<P> ParallelUnsortedBag<T>ParallelUnsortedBag. selectWith(Predicate2<? super T,? super P> predicate, P parameter) -
Uses of ParallelUnsortedBag in org.eclipse.collections.impl.bag.mutable
Methods in org.eclipse.collections.impl.bag.mutable that return ParallelUnsortedBag Modifier and Type Method Description ParallelUnsortedBag<T>AbstractMutableBag. asParallel(java.util.concurrent.ExecutorService executorService, int batchSize) -
Uses of ParallelUnsortedBag in org.eclipse.collections.impl.lazy.parallel.bag
Classes in org.eclipse.collections.impl.lazy.parallel.bag that implement ParallelUnsortedBag Modifier and Type Class Description classAbstractParallelUnsortedBag<T,B extends UnsortedBagBatch<T>>classNonParallelUnsortedBag<T>classParallelCollectUnsortedBag<T,V>(package private) classParallelSelectUnsortedBag<T>Methods in org.eclipse.collections.impl.lazy.parallel.bag that return ParallelUnsortedBag Modifier and Type Method Description <V> ParallelUnsortedBag<V>AbstractParallelUnsortedBag. collect(Function<? super T,? extends V> function)<V> ParallelUnsortedBag<V>NonParallelUnsortedBag. collect(Function<? super T,? extends V> function)<V> ParallelUnsortedBag<V>AbstractParallelUnsortedBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<V> ParallelUnsortedBag<V>NonParallelUnsortedBag. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<P,V>
ParallelUnsortedBag<V>AbstractParallelUnsortedBag. collectWith(Function2<? super T,? super P,? extends V> function, P parameter)<P,V>
ParallelUnsortedBag<V>NonParallelUnsortedBag. collectWith(Function2<? super T,? super P,? extends V> function, P parameter)<V> ParallelUnsortedBag<V>AbstractParallelUnsortedBag. flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)<V> ParallelUnsortedBag<V>NonParallelUnsortedBag. flatCollect(Function<? super T,? extends java.lang.Iterable<V>> function)ParallelUnsortedBag<T>AbstractParallelUnsortedBag. reject(Predicate<? super T> predicate)ParallelUnsortedBag<T>NonParallelUnsortedBag. reject(Predicate<? super T> predicate)<P> ParallelUnsortedBag<T>AbstractParallelUnsortedBag. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> ParallelUnsortedBag<T>NonParallelUnsortedBag. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)ParallelUnsortedBag<T>AbstractParallelUnsortedBag. select(Predicate<? super T> predicate)ParallelUnsortedBag<T>NonParallelUnsortedBag. select(Predicate<? super T> predicate)<S> ParallelUnsortedBag<S>AbstractParallelUnsortedBag. selectInstancesOf(java.lang.Class<S> clazz)<S> ParallelUnsortedBag<S>NonParallelUnsortedBag. selectInstancesOf(java.lang.Class<S> clazz)<P> ParallelUnsortedBag<T>AbstractParallelUnsortedBag. selectWith(Predicate2<? super T,? super P> predicate, P parameter)<P> ParallelUnsortedBag<T>NonParallelUnsortedBag. selectWith(Predicate2<? super T,? super P> predicate, P parameter)
-