Interface ImmutableBooleanList
-
- All Superinterfaces:
BooleanIterable,BooleanList,ImmutableBooleanCollection,OrderedBooleanIterable,PrimitiveIterable,ReversibleBooleanIterable
public interface ImmutableBooleanList extends ImmutableBooleanCollection, BooleanList
This file was automatically generated from template file immutablePrimitiveList.stg.- Since:
- 3.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description <V> ImmutableList<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.default <V> ImmutableList<V>collectWithIndex(BooleanIntToObjectFunction<? extends V> function)Returns a new ImmutableList using results obtained by applying the specified function to each element and its corresponding index.ImmutableBooleanListdistinct()ImmutableBooleanListnewWith(boolean element)ImmutableBooleanListnewWithAll(BooleanIterable elements)ImmutableBooleanListnewWithout(boolean element)ImmutableBooleanListnewWithoutAll(BooleanIterable elements)ImmutableBooleanListreject(BooleanPredicate predicate)Returns a new BooleanIterable with all of the elements in the BooleanIterable that return false for the specified predicate.default ImmutableBooleanListrejectWithIndex(BooleanIntPredicate predicate)Returns a new ImmutableBooleanList excluding all elements with corresponding indexes matching the specified predicate.ImmutableBooleanListselect(BooleanPredicate predicate)Returns a new BooleanIterable with all of the elements in the BooleanIterable that return true for the specified predicate.default ImmutableBooleanListselectWithIndex(BooleanIntPredicate predicate)Returns a new ImmutableBooleanList including all elements with corresponding indexes matching the specified predicate.ImmutableBooleanListsubList(int fromIndex, int toIndex)default ImmutableBooleanListtap(BooleanProcedure procedure)ImmutableBooleanListtoReversed()default <T> ImmutableList<BooleanObjectPair<T>>zip(Iterable<T> iterable)Returns anImmutableListformed from thisImmutableBooleanListand aListIterableby combining corresponding elements in pairs.default ImmutableList<BooleanBooleanPair>zipBoolean(BooleanIterable iterable)Returns anImmutableListformed from thisImmutableBooleanListand anotherBooleanListby combining corresponding elements in pairs.-
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.list.primitive.BooleanList
equals, forEachInBoth, get, hashCode, lastIndexOf, toImmutable
-
Methods inherited from interface org.eclipse.collections.api.ordered.primitive.OrderedBooleanIterable
collectWithIndex, forEachWithIndex, getFirst, indexOf, rejectWithIndex, selectWithIndex
-
Methods inherited from interface org.eclipse.collections.api.PrimitiveIterable
appendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size, toString
-
Methods inherited from interface org.eclipse.collections.api.ordered.primitive.ReversibleBooleanIterable
asReversed, getLast, injectIntoWithIndex
-
-
-
-
Method Detail
-
select
ImmutableBooleanList 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- Specified by:
selectin interfaceBooleanList- Specified by:
selectin interfaceImmutableBooleanCollection- Specified by:
selectin interfaceOrderedBooleanIterable- Specified by:
selectin interfaceReversibleBooleanIterable
-
reject
ImmutableBooleanList 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- Specified by:
rejectin interfaceBooleanList- Specified by:
rejectin interfaceImmutableBooleanCollection- Specified by:
rejectin interfaceOrderedBooleanIterable- Specified by:
rejectin interfaceReversibleBooleanIterable
-
tap
default ImmutableBooleanList tap(BooleanProcedure procedure)
- Specified by:
tapin interfaceBooleanIterable- Specified by:
tapin interfaceBooleanList- Specified by:
tapin interfaceImmutableBooleanCollection- Since:
- 9.0.
-
selectWithIndex
default ImmutableBooleanList selectWithIndex(BooleanIntPredicate predicate)
Returns a new ImmutableBooleanList including all elements with corresponding indexes matching the specified predicate.- Specified by:
selectWithIndexin interfaceBooleanList- Specified by:
selectWithIndexin interfaceOrderedBooleanIterable- Specified by:
selectWithIndexin interfaceReversibleBooleanIterable- Since:
- 11.1.
-
rejectWithIndex
default ImmutableBooleanList rejectWithIndex(BooleanIntPredicate predicate)
Returns a new ImmutableBooleanList excluding all elements with corresponding indexes matching the specified predicate.- Specified by:
rejectWithIndexin interfaceBooleanList- Specified by:
rejectWithIndexin interfaceOrderedBooleanIterable- Specified by:
rejectWithIndexin interfaceReversibleBooleanIterable- Since:
- 11.1.
-
collect
<V> ImmutableList<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- Specified by:
collectin interfaceBooleanList- Specified by:
collectin interfaceImmutableBooleanCollection- Specified by:
collectin interfaceOrderedBooleanIterable- Specified by:
collectin interfaceReversibleBooleanIterable
-
collectWithIndex
default <V> ImmutableList<V> collectWithIndex(BooleanIntToObjectFunction<? extends V> function)
Returns a new ImmutableList using results obtained by applying the specified function to each element and its corresponding index.- Specified by:
collectWithIndexin interfaceBooleanList- Specified by:
collectWithIndexin interfaceOrderedBooleanIterable- Specified by:
collectWithIndexin interfaceReversibleBooleanIterable- Since:
- 9.1.
-
newWith
ImmutableBooleanList newWith(boolean element)
- Specified by:
newWithin interfaceImmutableBooleanCollection
-
newWithout
ImmutableBooleanList newWithout(boolean element)
- Specified by:
newWithoutin interfaceImmutableBooleanCollection
-
newWithAll
ImmutableBooleanList newWithAll(BooleanIterable elements)
- Specified by:
newWithAllin interfaceImmutableBooleanCollection
-
newWithoutAll
ImmutableBooleanList newWithoutAll(BooleanIterable elements)
- Specified by:
newWithoutAllin interfaceImmutableBooleanCollection
-
toReversed
ImmutableBooleanList toReversed()
- Specified by:
toReversedin interfaceBooleanList- Specified by:
toReversedin interfaceReversibleBooleanIterable
-
distinct
ImmutableBooleanList distinct()
- Specified by:
distinctin interfaceBooleanList- Specified by:
distinctin interfaceReversibleBooleanIterable- Since:
- 6.0.
-
subList
ImmutableBooleanList subList(int fromIndex, int toIndex)
- Specified by:
subListin interfaceBooleanList- See Also:
List.subList(int fromIndex, int toIndex)
-
zipBoolean
default ImmutableList<BooleanBooleanPair> zipBoolean(BooleanIterable iterable)
Returns anImmutableListformed from thisImmutableBooleanListand anotherBooleanListby combining corresponding elements in pairs. If one of the twoBooleanLists is longer than the other, its remaining elements are ignored.- Specified by:
zipBooleanin interfaceBooleanList- Since:
- 9.1.
-
zip
default <T> ImmutableList<BooleanObjectPair<T>> zip(Iterable<T> iterable)
Returns anImmutableListformed from thisImmutableBooleanListand aListIterableby combining corresponding elements in pairs. If one of the two Lists is longer than the other, its remaining elements are ignored.- Specified by:
zipin interfaceBooleanList- Since:
- 9.1.
-
-