ByteIterable
, PrimitiveIterable
AbstractLazyByteIterable
, CollectBooleanToByteIterable
, CollectByteIterable
, CollectByteToByteIterable
, CollectCharToByteIterable
, CollectDoubleToByteIterable
, CollectFloatToByteIterable
, CollectIntToByteIterable
, CollectLongToByteIterable
, CollectShortToByteIterable
, LazyByteIterableAdapter
, ReverseByteIterable
, SelectByteIterable
, TapByteIterable
public interface LazyByteIterable extends ByteIterable
Modifier and Type | Method | Description |
---|---|---|
<V> LazyIterable<V> |
collect(ByteToObjectFunction<? extends V> function) |
Returns a new collection with the results of applying the specified function on each element of the source
collection.
|
LazyBooleanIterable |
collectBoolean(ByteToBooleanFunction function) |
|
LazyByteIterable |
collectByte(ByteToByteFunction function) |
|
LazyCharIterable |
collectChar(ByteToCharFunction function) |
|
LazyDoubleIterable |
collectDouble(ByteToDoubleFunction function) |
|
LazyFloatIterable |
collectFloat(ByteToFloatFunction function) |
|
LazyIntIterable |
collectInt(ByteToIntFunction function) |
|
LazyLongIterable |
collectLong(ByteToLongFunction function) |
|
LazyShortIterable |
collectShort(ByteToShortFunction function) |
|
<V> LazyIterable<V> |
flatCollect(ByteToObjectFunction<? extends java.lang.Iterable<V>> function) |
|
LazyByteIterable |
reject(BytePredicate predicate) |
Returns a new ByteIterable with all of the elements in the ByteIterable that
return false for the specified predicate.
|
LazyByteIterable |
select(BytePredicate predicate) |
Returns a new ByteIterable with all of the elements in the ByteIterable that
return true for the specified predicate.
|
LazyByteIterable |
tap(ByteProcedure procedure) |
allSatisfy, anySatisfy, asLazy, average, averageIfEmpty, byteIterator, chunk, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, contains, containsAll, containsAll, count, detectIfNone, 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
LazyByteIterable tap(ByteProcedure procedure)
tap
in interface ByteIterable
LazyByteIterable select(BytePredicate predicate)
ByteIterable
select
in interface ByteIterable
LazyByteIterable reject(BytePredicate predicate)
ByteIterable
reject
in interface ByteIterable
<V> LazyIterable<V> collect(ByteToObjectFunction<? extends V> function)
ByteIterable
collect
in interface ByteIterable
<V> LazyIterable<V> flatCollect(ByteToObjectFunction<? extends java.lang.Iterable<V>> function)
LazyBooleanIterable collectBoolean(ByteToBooleanFunction function)
LazyByteIterable collectByte(ByteToByteFunction function)
LazyCharIterable collectChar(ByteToCharFunction function)
LazyShortIterable collectShort(ByteToShortFunction function)
LazyIntIterable collectInt(ByteToIntFunction function)
LazyFloatIterable collectFloat(ByteToFloatFunction function)
LazyLongIterable collectLong(ByteToLongFunction function)
LazyDoubleIterable collectDouble(ByteToDoubleFunction function)
Copyright © 2004–2020. All rights reserved.