CharIterable
, PrimitiveIterable
AbstractLazyCharIterable
, CollectBooleanToCharIterable
, CollectByteToCharIterable
, CollectCharIterable
, CollectCharToCharIterable
, CollectDoubleToCharIterable
, CollectFloatToCharIterable
, CollectIntToCharIterable
, CollectLongToCharIterable
, CollectShortToCharIterable
, LazyCharIterableAdapter
, ReverseCharIterable
, SelectCharIterable
, TapCharIterable
public interface LazyCharIterable extends CharIterable
Modifier and Type | Method | Description |
---|---|---|
<V> LazyIterable<V> |
collect(CharToObjectFunction<? extends V> function) |
Returns a new collection with the results of applying the specified function on each element of the source
collection.
|
LazyBooleanIterable |
collectBoolean(CharToBooleanFunction function) |
|
LazyByteIterable |
collectByte(CharToByteFunction function) |
|
LazyCharIterable |
collectChar(CharToCharFunction function) |
|
LazyDoubleIterable |
collectDouble(CharToDoubleFunction function) |
|
LazyFloatIterable |
collectFloat(CharToFloatFunction function) |
|
LazyIntIterable |
collectInt(CharToIntFunction function) |
|
LazyLongIterable |
collectLong(CharToLongFunction function) |
|
LazyShortIterable |
collectShort(CharToShortFunction function) |
|
<V> LazyIterable<V> |
flatCollect(CharToObjectFunction<? extends java.lang.Iterable<V>> function) |
|
LazyCharIterable |
reject(CharPredicate predicate) |
Returns a new CharIterable with all of the elements in the CharIterable that
return false for the specified predicate.
|
LazyCharIterable |
select(CharPredicate predicate) |
Returns a new CharIterable with all of the elements in the CharIterable that
return true for the specified predicate.
|
LazyCharIterable |
tap(CharProcedure procedure) |
allSatisfy, anySatisfy, asLazy, average, averageIfEmpty, charIterator, 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, reject, select, sum, summaryStatistics, toArray, toBag, toList, toSet, toSortedArray, toSortedList
appendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size, toString
LazyCharIterable tap(CharProcedure procedure)
tap
in interface CharIterable
LazyCharIterable select(CharPredicate predicate)
CharIterable
select
in interface CharIterable
LazyCharIterable reject(CharPredicate predicate)
CharIterable
reject
in interface CharIterable
<V> LazyIterable<V> collect(CharToObjectFunction<? extends V> function)
CharIterable
collect
in interface CharIterable
<V> LazyIterable<V> flatCollect(CharToObjectFunction<? extends java.lang.Iterable<V>> function)
LazyBooleanIterable collectBoolean(CharToBooleanFunction function)
LazyByteIterable collectByte(CharToByteFunction function)
LazyCharIterable collectChar(CharToCharFunction function)
LazyShortIterable collectShort(CharToShortFunction function)
LazyIntIterable collectInt(CharToIntFunction function)
LazyFloatIterable collectFloat(CharToFloatFunction function)
LazyLongIterable collectLong(CharToLongFunction function)
LazyDoubleIterable collectDouble(CharToDoubleFunction function)
Copyright © 2004–2018. All rights reserved.