DoubleIterable
, PrimitiveIterable
AbstractLazyDoubleIterable
, CollectBooleanToDoubleIterable
, CollectByteToDoubleIterable
, CollectCharToDoubleIterable
, CollectDoubleIterable
, CollectDoubleToDoubleIterable
, CollectFloatToDoubleIterable
, CollectIntToDoubleIterable
, CollectLongToDoubleIterable
, CollectShortToDoubleIterable
, LazyDoubleIterableAdapter
, ReverseDoubleIterable
, SelectDoubleIterable
, TapDoubleIterable
public 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 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, toSortedList
appendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size, toString
LazyDoubleIterable tap(DoubleProcedure procedure)
tap
in interface DoubleIterable
LazyDoubleIterable select(DoublePredicate predicate)
DoubleIterable
select
in interface DoubleIterable
LazyDoubleIterable reject(DoublePredicate predicate)
DoubleIterable
reject
in interface DoubleIterable
<V> LazyIterable<V> collect(DoubleToObjectFunction<? extends V> function)
DoubleIterable
collect
in interface DoubleIterable
<V> LazyIterable<V> flatCollect(DoubleToObjectFunction<? extends 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–2019. All rights reserved.