Package org.eclipse.collections.api.set
Interface ParallelSetIterable<T>
- All Superinterfaces:
ParallelIterable<T>
- All Known Subinterfaces:
ParallelSortedSetIterable<T>,ParallelUnsortedSetIterable<T>
- Since:
- 5.0
-
Method Summary
Modifier and TypeMethodDescriptionasUnique()<V> SetMultimap<V,T> <V> SetMultimap<V,T> groupByEach(Function<? super T, ? extends Iterable<V>> function) Creates a parallel iterable for rejecting elements from the current iterable.<P> ParallelSetIterable<T>rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) Creates a parallel iterable for selecting elements from the current iterable.<S> ParallelSetIterable<S>selectInstancesOf(Class<S> clazz) <P> ParallelSetIterable<T>selectWith(Predicate2<? super T, ? super P> predicate, P parameter) Methods inherited from interface org.eclipse.collections.api.ParallelIterable
aggregateBy, aggregateInPlaceBy, allSatisfy, allSatisfyWith, anySatisfy, anySatisfyWith, appendString, appendString, appendString, collect, collectIf, collectWith, count, countWith, detect, detectIfNone, detectWith, detectWithIfNone, flatCollect, forEach, forEachWith, groupByUniqueKey, makeString, makeString, makeString, makeString, max, max, maxBy, min, min, minBy, noneSatisfy, noneSatisfyWith, sumOfDouble, sumOfFloat, sumOfInt, sumOfLong, toArray, toArray, toBag, toList, toMap, toSet, toSortedBag, toSortedBag, toSortedBagBy, toSortedList, toSortedList, toSortedListBy, toSortedMap, toSortedMap, toSortedSet, toSortedSet, toSortedSetBy
-
Method Details
-
asUnique
ParallelSetIterable<T> asUnique()- Specified by:
asUniquein interfaceParallelIterable<T>
-
select
Creates a parallel iterable for selecting elements from the current iterable.- Specified by:
selectin interfaceParallelIterable<T>
-
selectWith
- Specified by:
selectWithin interfaceParallelIterable<T>
-
reject
Creates a parallel iterable for rejecting elements from the current iterable.- Specified by:
rejectin interfaceParallelIterable<T>
-
rejectWith
- Specified by:
rejectWithin interfaceParallelIterable<T>
-
selectInstancesOf
- Specified by:
selectInstancesOfin interfaceParallelIterable<T>
-
groupBy
- Specified by:
groupByin interfaceParallelIterable<T>
-
groupByEach
- Specified by:
groupByEachin interfaceParallelIterable<T>
-