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.LazyBooleanIterablecollectBoolean(BooleanToBooleanFunction function)LazyByteIterablecollectByte(BooleanToByteFunction function)LazyCharIterablecollectChar(BooleanToCharFunction function)LazyDoubleIterablecollectDouble(BooleanToDoubleFunction function)LazyFloatIterablecollectFloat(BooleanToFloatFunction function)LazyIntIterablecollectInt(BooleanToIntFunction function)LazyLongIterablecollectLong(BooleanToLongFunction function)LazyShortIterablecollectShort(BooleanToShortFunction function)<V> LazyIterable<V>flatCollect(BooleanToObjectFunction<? extends java.lang.Iterable<V>> function)LazyBooleanIterablereject(BooleanPredicate predicate)Returns a new BooleanIterable with all of the elements in the BooleanIterable that return false for the specified predicate.LazyBooleanIterableselect(BooleanPredicate predicate)Returns a new BooleanIterable with all of the elements in the BooleanIterable that return true for the specified predicate.LazyBooleanIterabletap(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:
tapin interfaceBooleanIterable- Since:
- 9.0.
-
select
LazyBooleanIterable select(BooleanPredicate predicate)
Description copied from interface:BooleanIterableReturns a new BooleanIterable with all of the elements in the BooleanIterable that return true for the specified predicate.- Specified by:
selectin interfaceBooleanIterable
-
reject
LazyBooleanIterable reject(BooleanPredicate predicate)
Description copied from interface:BooleanIterableReturns a new BooleanIterable with all of the elements in the BooleanIterable that return false for the specified predicate.- Specified by:
rejectin interfaceBooleanIterable
-
collect
<V> LazyIterable<V> collect(BooleanToObjectFunction<? extends V> function)
Description copied from interface:BooleanIterableReturns 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 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
-
-