FloatIterable
, PrimitiveIterable
AbstractLazyFloatIterable
, CollectBooleanToFloatIterable
, CollectByteToFloatIterable
, CollectCharToFloatIterable
, CollectDoubleToFloatIterable
, CollectFloatIterable
, CollectFloatToFloatIterable
, CollectIntToFloatIterable
, CollectLongToFloatIterable
, CollectShortToFloatIterable
, LazyFloatIterableAdapter
, ReverseFloatIterable
, SelectFloatIterable
, TapFloatIterable
public interface LazyFloatIterable extends FloatIterable
Modifier and Type | Method | Description |
---|---|---|
<V> LazyIterable<V> |
collect(FloatToObjectFunction<? extends V> function) |
Returns a new collection with the results of applying the specified function on each element of the source
collection.
|
LazyBooleanIterable |
collectBoolean(FloatToBooleanFunction function) |
|
LazyByteIterable |
collectByte(FloatToByteFunction function) |
|
LazyCharIterable |
collectChar(FloatToCharFunction function) |
|
LazyDoubleIterable |
collectDouble(FloatToDoubleFunction function) |
|
LazyFloatIterable |
collectFloat(FloatToFloatFunction function) |
|
LazyIntIterable |
collectInt(FloatToIntFunction function) |
|
LazyLongIterable |
collectLong(FloatToLongFunction function) |
|
LazyShortIterable |
collectShort(FloatToShortFunction function) |
|
<V> LazyIterable<V> |
flatCollect(FloatToObjectFunction<? extends java.lang.Iterable<V>> function) |
|
LazyFloatIterable |
reject(FloatPredicate predicate) |
Returns a new FloatIterable with all of the elements in the FloatIterable that
return false for the specified predicate.
|
LazyFloatIterable |
select(FloatPredicate predicate) |
Returns a new FloatIterable with all of the elements in the FloatIterable that
return true for the specified predicate.
|
LazyFloatIterable |
tap(FloatProcedure procedure) |
allSatisfy, anySatisfy, asLazy, average, averageIfEmpty, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, contains, containsAll, containsAll, count, detectIfNone, each, flatCollect, floatIterator, forEach, injectInto, max, maxIfEmpty, median, medianIfEmpty, min, minIfEmpty, noneSatisfy, reject, select, sum, summaryStatistics, toArray, toBag, toList, toSet, toSortedArray, toSortedList
appendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size, toString
LazyFloatIterable tap(FloatProcedure procedure)
tap
in interface FloatIterable
LazyFloatIterable select(FloatPredicate predicate)
FloatIterable
select
in interface FloatIterable
LazyFloatIterable reject(FloatPredicate predicate)
FloatIterable
reject
in interface FloatIterable
<V> LazyIterable<V> collect(FloatToObjectFunction<? extends V> function)
FloatIterable
collect
in interface FloatIterable
<V> LazyIterable<V> flatCollect(FloatToObjectFunction<? extends java.lang.Iterable<V>> function)
LazyBooleanIterable collectBoolean(FloatToBooleanFunction function)
LazyByteIterable collectByte(FloatToByteFunction function)
LazyCharIterable collectChar(FloatToCharFunction function)
LazyShortIterable collectShort(FloatToShortFunction function)
LazyIntIterable collectInt(FloatToIntFunction function)
LazyFloatIterable collectFloat(FloatToFloatFunction function)
LazyLongIterable collectLong(FloatToLongFunction function)
LazyDoubleIterable collectDouble(FloatToDoubleFunction function)
Copyright © 2004–2017. All rights reserved.