Package org.eclipse.collections.api
Interface LazyBooleanIterable
-
- All Superinterfaces:
BooleanIterable
,PrimitiveIterable
- All Known Implementing Classes:
AbstractLazyBooleanIterable
,CollectBooleanIterable
,CollectBooleanToBooleanIterable
,CollectByteToBooleanIterable
,CollectCharToBooleanIterable
,CollectDoubleToBooleanIterable
,CollectFloatToBooleanIterable
,CollectIntToBooleanIterable
,CollectLongToBooleanIterable
,CollectShortToBooleanIterable
,LazyBooleanIterableAdapter
,ReverseBooleanIterable
,SelectBooleanIterable
,TapBooleanIterable
public interface LazyBooleanIterable extends BooleanIterable
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(BooleanToObjectFunction<? extends V> function)
Returns a new collection with the results of applying the specified function on each element of the source collection.LazyBooleanIterable
collectBoolean(BooleanToBooleanFunction function)
LazyByteIterable
collectByte(BooleanToByteFunction function)
LazyCharIterable
collectChar(BooleanToCharFunction function)
LazyDoubleIterable
collectDouble(BooleanToDoubleFunction function)
LazyFloatIterable
collectFloat(BooleanToFloatFunction function)
LazyIntIterable
collectInt(BooleanToIntFunction function)
LazyLongIterable
collectLong(BooleanToLongFunction function)
LazyShortIterable
collectShort(BooleanToShortFunction function)
<V> LazyIterable<V>
flatCollect(BooleanToObjectFunction<? extends java.lang.Iterable<V>> function)
LazyBooleanIterable
reject(BooleanPredicate predicate)
Returns a new BooleanIterable with all of the elements in the BooleanIterable that return false for the specified predicate.LazyBooleanIterable
select(BooleanPredicate predicate)
Returns a new BooleanIterable with all of the elements in the BooleanIterable that return true for the specified predicate.LazyBooleanIterable
tap(BooleanProcedure procedure)
-
Methods inherited from interface org.eclipse.collections.api.BooleanIterable
allSatisfy, anySatisfy, asLazy, booleanIterator, 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, noneSatisfy, reduce, reduceIfEmpty, reject, select, toArray, toArray, toBag, toList, toSet
-
Methods inherited from interface org.eclipse.collections.api.PrimitiveIterable
appendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size, toString
-
-
-
-
Method Detail
-
tap
LazyBooleanIterable tap(BooleanProcedure procedure)
- Specified by:
tap
in interfaceBooleanIterable
- Since:
- 9.0.
-
select
LazyBooleanIterable select(BooleanPredicate predicate)
Description copied from interface:BooleanIterable
Returns a new BooleanIterable with all of the elements in the BooleanIterable that return true for the specified predicate.- Specified by:
select
in interfaceBooleanIterable
-
reject
LazyBooleanIterable reject(BooleanPredicate predicate)
Description copied from interface:BooleanIterable
Returns a new BooleanIterable with all of the elements in the BooleanIterable that return false for the specified predicate.- Specified by:
reject
in interfaceBooleanIterable
-
collect
<V> LazyIterable<V> collect(BooleanToObjectFunction<? extends V> function)
Description copied from interface:BooleanIterable
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 interfaceBooleanIterable
-
flatCollect
<V> LazyIterable<V> flatCollect(BooleanToObjectFunction<? extends java.lang.Iterable<V>> function)
- Since:
- 9.0
-
collectBoolean
LazyBooleanIterable collectBoolean(BooleanToBooleanFunction function)
- Since:
- 7.0
-
collectByte
LazyByteIterable collectByte(BooleanToByteFunction function)
- Since:
- 7.0
-
collectChar
LazyCharIterable collectChar(BooleanToCharFunction function)
- Since:
- 7.0
-
collectShort
LazyShortIterable collectShort(BooleanToShortFunction function)
- Since:
- 7.0
-
collectInt
LazyIntIterable collectInt(BooleanToIntFunction function)
- Since:
- 7.0
-
collectFloat
LazyFloatIterable collectFloat(BooleanToFloatFunction function)
- Since:
- 7.0
-
collectLong
LazyLongIterable collectLong(BooleanToLongFunction function)
- Since:
- 7.0
-
collectDouble
LazyDoubleIterable collectDouble(BooleanToDoubleFunction function)
- Since:
- 7.0
-
-