Methods
| Modifier and Type |
Method and Description |
<V> Batch<V> |
collect(com.gs.collections.api.block.function.Function<? super T,? extends V> function) |
int |
count(com.gs.collections.api.block.predicate.Predicate<? super T> predicate) |
<V> Batch<V> |
flatCollect(com.gs.collections.api.block.function.Function<? super T,? extends java.lang.Iterable<V>> function) |
void |
forEach(com.gs.collections.api.block.procedure.Procedure<? super T> procedure) |
java.lang.String |
makeString(java.lang.String separator) |
T |
max(java.util.Comparator<? super T> comparator) |
<V extends java.lang.Comparable<? super V>> T |
maxBy(com.gs.collections.api.block.function.Function<? super T,? extends V> function) |
T |
min(java.util.Comparator<? super T> comparator) |
<V extends java.lang.Comparable<? super V>> T |
minBy(com.gs.collections.api.block.function.Function<? super T,? extends V> function) |
Batch<T> |
select(com.gs.collections.api.block.predicate.Predicate<? super T> predicate) |
DoubleSumResultHolder |
sumOfDouble(com.gs.collections.api.block.function.primitive.DoubleFunction<? super T> function) |
DoubleSumResultHolder |
sumOfFloat(com.gs.collections.api.block.function.primitive.FloatFunction<? super T> function) |
long |
sumOfInt(com.gs.collections.api.block.function.primitive.IntFunction<? super T> function) |
long |
sumOfLong(com.gs.collections.api.block.function.primitive.LongFunction<? super T> function) |