Package org.eclipse.collections.api
Interface LazyCharIterable
- All Superinterfaces:
CharIterable,PrimitiveIterable
- All Known Implementing Classes:
AbstractLazyCharIterable,CollectBooleanToCharIterable,CollectByteToCharIterable,CollectCharIterable,CollectCharToCharIterable,CollectDoubleToCharIterable,CollectFloatToCharIterable,CollectIntToCharIterable,CollectLongToCharIterable,CollectShortToCharIterable,LazyCharIterableAdapter,ReverseCharIterable,SelectCharIterable,TapCharIterable
public interface LazyCharIterable extends CharIterable
This file was automatically generated from template file lazyPrimitiveIterable.stg.
-
Method Summary
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.LazyBooleanIterablecollectBoolean(CharToBooleanFunction function)LazyByteIterablecollectByte(CharToByteFunction function)LazyCharIterablecollectChar(CharToCharFunction function)LazyDoubleIterablecollectDouble(CharToDoubleFunction function)LazyFloatIterablecollectFloat(CharToFloatFunction function)LazyIntIterablecollectInt(CharToIntFunction function)LazyLongIterablecollectLong(CharToLongFunction function)LazyShortIterablecollectShort(CharToShortFunction function)<V> LazyIterable<V>flatCollect(CharToObjectFunction<? extends Iterable<V>> function)LazyCharIterablereject(CharPredicate predicate)Returns a new CharIterable with all of the elements in the CharIterable that return false for the specified predicate.LazyCharIterableselect(CharPredicate predicate)Returns a new CharIterable with all of the elements in the CharIterable that return true for the specified predicate.LazyCharIterabletap(CharProcedure procedure)Methods inherited from interface org.eclipse.collections.api.CharIterable
allSatisfy, anySatisfy, asLazy, average, averageIfEmpty, charIterator, 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, toArray, toBag, toList, toSet, toSortedArray, toSortedListMethods inherited from interface org.eclipse.collections.api.PrimitiveIterable
appendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size, toString
-
Method Details
-
tap
- Specified by:
tapin interfaceCharIterable- Since:
- 9.0.
-
select
Description copied from interface:CharIterableReturns a new CharIterable with all of the elements in the CharIterable that return true for the specified predicate.- Specified by:
selectin interfaceCharIterable
-
reject
Description copied from interface:CharIterableReturns a new CharIterable with all of the elements in the CharIterable that return false for the specified predicate.- Specified by:
rejectin interfaceCharIterable
-
collect
Description copied from interface:CharIterableReturns a new collection with the results of applying the specified function on each element of the source collection. This method is also commonly called transform or map.- Specified by:
collectin interfaceCharIterable
-
flatCollect
- Since:
- 9.0
-
collectBoolean
- Since:
- 7.0
-
collectByte
- Since:
- 7.0
-
collectChar
- Since:
- 7.0
-
collectShort
- Since:
- 7.0
-
collectInt
- Since:
- 7.0
-
collectFloat
- Since:
- 7.0
-
collectLong
- Since:
- 7.0
-
collectDouble
- Since:
- 7.0
-