Uses of Interface
org.eclipse.collections.api.block.predicate.primitive.BooleanIntPredicate
-
Packages that use BooleanIntPredicate Package Description org.eclipse.collections.api.list.primitive This package contains mutable and immutable primitive list API.org.eclipse.collections.api.ordered.primitive org.eclipse.collections.api.stack.primitive This package contains mutable and immutable primitive stack API. -
-
Uses of BooleanIntPredicate in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive with parameters of type BooleanIntPredicate Modifier and Type Method Description default BooleanListBooleanList. rejectWithIndex(BooleanIntPredicate predicate)Returns a new BooleanList excluding all elements with corresponding indexes matching the specified predicate.default ImmutableBooleanListImmutableBooleanList. rejectWithIndex(BooleanIntPredicate predicate)Returns a new ImmutableBooleanList excluding all elements with corresponding indexes matching the specified predicate.default MutableBooleanListMutableBooleanList. rejectWithIndex(BooleanIntPredicate predicate)Returns a new MutableBooleanList excluding all elements with corresponding indexes matching the specified predicate.default BooleanListBooleanList. selectWithIndex(BooleanIntPredicate predicate)Returns a new BooleanList including all elements with corresponding indexes matching the specified predicate.default ImmutableBooleanListImmutableBooleanList. selectWithIndex(BooleanIntPredicate predicate)Returns a new ImmutableBooleanList including all elements with corresponding indexes matching the specified predicate.default MutableBooleanListMutableBooleanList. selectWithIndex(BooleanIntPredicate predicate)Returns a new MutableBooleanList including all elements with corresponding indexes matching the specified predicate. -
Uses of BooleanIntPredicate in org.eclipse.collections.api.ordered.primitive
Methods in org.eclipse.collections.api.ordered.primitive with parameters of type BooleanIntPredicate Modifier and Type Method Description default OrderedBooleanIterableOrderedBooleanIterable. rejectWithIndex(BooleanIntPredicate predicate)Returns a new OrderedBooleanIterable excluding all elements with corresponding indexes matching the specified predicate.default <R extends MutableBooleanCollection>
ROrderedBooleanIterable. rejectWithIndex(BooleanIntPredicate predicate, R target)Returns a new MutableBooleanCollection excluding all elements with corresponding indexes matching the specified predicate.default ReversibleBooleanIterableReversibleBooleanIterable. rejectWithIndex(BooleanIntPredicate predicate)Returns a new ReversibleBooleanIterable excluding all elements with corresponding indexes matching the specified predicate.default OrderedBooleanIterableOrderedBooleanIterable. selectWithIndex(BooleanIntPredicate predicate)Returns a new OrderedBooleanIterable including all elements with corresponding indexes matching the specified predicate.default <R extends MutableBooleanCollection>
ROrderedBooleanIterable. selectWithIndex(BooleanIntPredicate predicate, R target)Returns a new MutableBooleanCollection including all elements with corresponding indexes matching the specified predicate.default ReversibleBooleanIterableReversibleBooleanIterable. selectWithIndex(BooleanIntPredicate predicate)Returns a new ReversibleBooleanIterable including all elements with corresponding indexes matching the specified predicate. -
Uses of BooleanIntPredicate in org.eclipse.collections.api.stack.primitive
Methods in org.eclipse.collections.api.stack.primitive with parameters of type BooleanIntPredicate Modifier and Type Method Description default BooleanStackBooleanStack. rejectWithIndex(BooleanIntPredicate predicate)Returns a new BooleanStack excluding all elements with corresponding indexes matching the specified predicate.default ImmutableBooleanStackImmutableBooleanStack. rejectWithIndex(BooleanIntPredicate predicate)Returns a new ImmutableBooleanStack excluding all elements with corresponding indexes matching the specified predicate.default MutableBooleanStackMutableBooleanStack. rejectWithIndex(BooleanIntPredicate predicate)Returns a new MutableBooleanStack excluding all elements with corresponding indexes matching the specified predicate.default BooleanStackBooleanStack. selectWithIndex(BooleanIntPredicate predicate)Returns a new BooleanStack including all elements with corresponding indexes matching the specified predicate.default ImmutableBooleanStackImmutableBooleanStack. selectWithIndex(BooleanIntPredicate predicate)Returns a new ImmutableBooleanStack including all elements with corresponding indexes matching the specified predicate.default MutableBooleanStackMutableBooleanStack. selectWithIndex(BooleanIntPredicate predicate)Returns a new MutableBooleanStack including all elements with corresponding indexes matching the specified predicate.
-