public interface ParallelSetIterable<T> extends ParallelIterable<T>
| Modifier and Type | Method and Description |
|---|---|
ParallelSetIterable<T> |
asUnique() |
<V> SetMultimap<V,T> |
groupBy(Function<? super T,? extends V> function) |
<V> SetMultimap<V,T> |
groupByEach(Function<? super T,? extends Iterable<V>> function) |
ParallelSetIterable<T> |
reject(Predicate<? super T> predicate)
Creates a parallel iterable for rejecting elements from the current iterable.
|
<P> ParallelSetIterable<T> |
rejectWith(Predicate2<? super T,? super P> predicate,
P parameter) |
ParallelSetIterable<T> |
select(Predicate<? super T> predicate)
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) |
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, 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, toSortedSetByParallelSetIterable<T> asUnique()
asUnique in interface ParallelIterable<T>ParallelSetIterable<T> select(Predicate<? super T> predicate)
select in interface ParallelIterable<T><P> ParallelSetIterable<T> selectWith(Predicate2<? super T,? super P> predicate, P parameter)
selectWith in interface ParallelIterable<T>ParallelSetIterable<T> reject(Predicate<? super T> predicate)
reject in interface ParallelIterable<T><P> ParallelSetIterable<T> rejectWith(Predicate2<? super T,? super P> predicate, P parameter)
rejectWith in interface ParallelIterable<T><S> ParallelSetIterable<S> selectInstancesOf(Class<S> clazz)
selectInstancesOf in interface ParallelIterable<T><V> SetMultimap<V,T> groupBy(Function<? super T,? extends V> function)
groupBy in interface ParallelIterable<T><V> SetMultimap<V,T> groupByEach(Function<? super T,? extends Iterable<V>> function)
groupByEach in interface ParallelIterable<T>Copyright © 2004–2021. All rights reserved.