DoubleIterable, PrimitiveIterableAbstractLazyDoubleIterable, CollectBooleanToDoubleIterable, CollectByteToDoubleIterable, CollectCharToDoubleIterable, CollectDoubleIterable, CollectDoubleToDoubleIterable, CollectFloatToDoubleIterable, CollectIntToDoubleIterable, CollectLongToDoubleIterable, CollectShortToDoubleIterable, LazyDoubleIterableAdapter, ReverseDoubleIterable, SelectDoubleIterable, TapDoubleIterablepublic interface LazyDoubleIterable extends DoubleIterable
| Modifier and Type | Method | Description |
|---|---|---|
<V> LazyIterable<V> |
collect(DoubleToObjectFunction<? extends V> function) |
Returns a new collection with the results of applying the specified function on each element of the source
collection.
|
LazyBooleanIterable |
collectBoolean(DoubleToBooleanFunction function) |
|
LazyByteIterable |
collectByte(DoubleToByteFunction function) |
|
LazyCharIterable |
collectChar(DoubleToCharFunction function) |
|
LazyDoubleIterable |
collectDouble(DoubleToDoubleFunction function) |
|
LazyFloatIterable |
collectFloat(DoubleToFloatFunction function) |
|
LazyIntIterable |
collectInt(DoubleToIntFunction function) |
|
LazyLongIterable |
collectLong(DoubleToLongFunction function) |
|
LazyShortIterable |
collectShort(DoubleToShortFunction function) |
|
<V> LazyIterable<V> |
flatCollect(DoubleToObjectFunction<? extends java.lang.Iterable<V>> function) |
|
LazyDoubleIterable |
reject(DoublePredicate predicate) |
Returns a new DoubleIterable with all of the elements in the DoubleIterable that
return false for the specified predicate.
|
LazyDoubleIterable |
select(DoublePredicate predicate) |
Returns a new DoubleIterable with all of the elements in the DoubleIterable that
return true for the specified predicate.
|
LazyDoubleIterable |
tap(DoubleProcedure procedure) |
allSatisfy, anySatisfy, asLazy, average, averageIfEmpty, chunk, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, contains, containsAll, containsAll, count, detectIfNone, doubleIterator, each, flatCollect, forEach, injectInto, max, maxIfEmpty, median, medianIfEmpty, min, minIfEmpty, noneSatisfy, reduce, reduceIfEmpty, reject, select, sum, summaryStatistics, toArray, toBag, toList, toSet, toSortedArray, toSortedListappendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size, toStringLazyDoubleIterable tap(DoubleProcedure procedure)
tap in interface DoubleIterableLazyDoubleIterable select(DoublePredicate predicate)
DoubleIterableselect in interface DoubleIterableLazyDoubleIterable reject(DoublePredicate predicate)
DoubleIterablereject in interface DoubleIterable<V> LazyIterable<V> collect(DoubleToObjectFunction<? extends V> function)
DoubleIterablecollect in interface DoubleIterable<V> LazyIterable<V> flatCollect(DoubleToObjectFunction<? extends java.lang.Iterable<V>> function)
LazyBooleanIterable collectBoolean(DoubleToBooleanFunction function)
LazyByteIterable collectByte(DoubleToByteFunction function)
LazyCharIterable collectChar(DoubleToCharFunction function)
LazyShortIterable collectShort(DoubleToShortFunction function)
LazyIntIterable collectInt(DoubleToIntFunction function)
LazyFloatIterable collectFloat(DoubleToFloatFunction function)
LazyLongIterable collectLong(DoubleToLongFunction function)
LazyDoubleIterable collectDouble(DoubleToDoubleFunction function)
Copyright © 2004–2020. All rights reserved.