Interface SortedSetBatch<T>
-
- All Superinterfaces:
Batch<T>
,OrderedBatch<T>
- All Known Subinterfaces:
RootSortedSetBatch<T>
- All Known Implementing Classes:
ImmutableTreeSet.ImmutableTreeSetBatch
,SelectSortedSetBatch
public interface SortedSetBatch<T> extends OrderedBatch<T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SortedSetBatch<T>
distinct(ConcurrentHashMap<T,java.lang.Boolean> distinct)
SortedSetBatch<T>
select(Predicate<? super T> predicate)
-
Methods inherited from interface org.eclipse.collections.impl.lazy.parallel.Batch
count, forEach, makeString, max, maxBy, min, minBy, sumOfDouble, sumOfFloat, sumOfInt, sumOfLong
-
Methods inherited from interface org.eclipse.collections.impl.lazy.parallel.OrderedBatch
collect, flatCollect
-
-
-
-
Method Detail
-
select
SortedSetBatch<T> select(Predicate<? super T> predicate)
-
distinct
SortedSetBatch<T> distinct(ConcurrentHashMap<T,java.lang.Boolean> distinct)
- Specified by:
distinct
in interfaceOrderedBatch<T>
-
-