Package org.eclipse.collections.api
Interface LazyCharIterable
-
- All Superinterfaces:
CharIterable
,PrimitiveIterable
- All Known Implementing Classes:
AbstractLazyCharIterable
,CharBooleanHashMap.KeysView
,CharByteHashMap.KeysView
,CharCharHashMap.KeysView
,CharDoubleHashMap.KeysView
,CharFloatHashMap.KeysView
,CharIntHashMap.KeysView
,CharLongHashMap.KeysView
,CharObjectHashMap.KeysView
,CharShortHashMap.KeysView
,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
All Methods Instance Methods Abstract Methods 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)
-
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, containsAny, containsAny, containsNone, containsNone, count, detectIfNone, each, flatCollect, forEach, injectInto, injectIntoBoolean, injectIntoByte, injectIntoChar, injectIntoDouble, injectIntoFloat, injectIntoInt, injectIntoLong, injectIntoShort, max, maxIfEmpty, median, medianIfEmpty, min, minIfEmpty, noneSatisfy, reduce, reduceIfEmpty, reject, select, sum, summaryStatistics, toArray, toArray, toBag, toList, toSet, toSortedArray, toSortedList, toSortedList, toSortedListBy, toSortedListBy
-
Methods inherited from interface org.eclipse.collections.api.PrimitiveIterable
appendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size, toString
-
-
-
-
Method Detail
-
tap
LazyCharIterable tap(CharProcedure procedure)
- Specified by:
tap
in interfaceCharIterable
- Since:
- 9.0.
-
select
LazyCharIterable select(CharPredicate predicate)
Description copied from interface:CharIterable
Returns a new CharIterable with all of the elements in the CharIterable that return true for the specified predicate.- Specified by:
select
in interfaceCharIterable
-
reject
LazyCharIterable reject(CharPredicate predicate)
Description copied from interface:CharIterable
Returns a new CharIterable with all of the elements in the CharIterable that return false for the specified predicate.- Specified by:
reject
in interfaceCharIterable
-
collect
<V> LazyIterable<V> collect(CharToObjectFunction<? extends V> function)
Description copied from interface:CharIterable
Returns 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:
collect
in interfaceCharIterable
-
flatCollect
<V> LazyIterable<V> flatCollect(CharToObjectFunction<? extends java.lang.Iterable<V>> function)
- Since:
- 9.0
-
collectBoolean
LazyBooleanIterable collectBoolean(CharToBooleanFunction function)
- Since:
- 7.0
-
collectByte
LazyByteIterable collectByte(CharToByteFunction function)
- Since:
- 7.0
-
collectChar
LazyCharIterable collectChar(CharToCharFunction function)
- Since:
- 7.0
-
collectShort
LazyShortIterable collectShort(CharToShortFunction function)
- Since:
- 7.0
-
collectInt
LazyIntIterable collectInt(CharToIntFunction function)
- Since:
- 7.0
-
collectFloat
LazyFloatIterable collectFloat(CharToFloatFunction function)
- Since:
- 7.0
-
collectLong
LazyLongIterable collectLong(CharToLongFunction function)
- Since:
- 7.0
-
collectDouble
LazyDoubleIterable collectDouble(CharToDoubleFunction function)
- Since:
- 7.0
-
-