Uses of Interface
org.eclipse.collections.api.block.predicate.primitive.IntIntPredicate
-
Packages that use IntIntPredicate Package Description org.eclipse.collections.api.list.primitive This package contains mutable and immutable primitive list API.org.eclipse.collections.api.map.primitive This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.org.eclipse.collections.api.ordered.primitive org.eclipse.collections.api.stack.primitive This package contains mutable and immutable primitive stack API. -
-
Uses of IntIntPredicate in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive with parameters of type IntIntPredicate Modifier and Type Method Description default ImmutableIntListImmutableIntList. rejectWithIndex(IntIntPredicate predicate)Returns a new ImmutableIntList excluding all elements with corresponding indexes matching the specified predicate.default IntListIntList. rejectWithIndex(IntIntPredicate predicate)Returns a new IntList excluding all elements with corresponding indexes matching the specified predicate.default MutableIntListMutableIntList. rejectWithIndex(IntIntPredicate predicate)Returns a new MutableIntList excluding all elements with corresponding indexes matching the specified predicate.default ImmutableIntListImmutableIntList. selectWithIndex(IntIntPredicate predicate)Returns a new ImmutableIntList including all elements with corresponding indexes matching the specified predicate.default IntListIntList. selectWithIndex(IntIntPredicate predicate)Returns a new IntList including all elements with corresponding indexes matching the specified predicate.default MutableIntListMutableIntList. selectWithIndex(IntIntPredicate predicate)Returns a new MutableIntList including all elements with corresponding indexes matching the specified predicate. -
Uses of IntIntPredicate in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type IntIntPredicate Modifier and Type Method Description ImmutableIntIntMapImmutableIntIntMap. reject(IntIntPredicate predicate)IntIntMapIntIntMap. reject(IntIntPredicate predicate)Return a copy of this map containing only the key/value pairs that do not match the predicate.MutableIntIntMapMutableIntIntMap. reject(IntIntPredicate predicate)ImmutableIntIntMapImmutableIntIntMap. select(IntIntPredicate predicate)IntIntMapIntIntMap. select(IntIntPredicate predicate)Return a copy of this map containing only the key/value pairs that match the predicate.MutableIntIntMapMutableIntIntMap. select(IntIntPredicate predicate) -
Uses of IntIntPredicate in org.eclipse.collections.api.ordered.primitive
Methods in org.eclipse.collections.api.ordered.primitive with parameters of type IntIntPredicate Modifier and Type Method Description default OrderedIntIterableOrderedIntIterable. rejectWithIndex(IntIntPredicate predicate)Returns a new OrderedIntIterable excluding all elements with corresponding indexes matching the specified predicate.default <R extends MutableIntCollection>
ROrderedIntIterable. rejectWithIndex(IntIntPredicate predicate, R target)Returns a new MutableIntCollection excluding all elements with corresponding indexes matching the specified predicate.default ReversibleIntIterableReversibleIntIterable. rejectWithIndex(IntIntPredicate predicate)Returns a new ReversibleIntIterable excluding all elements with corresponding indexes matching the specified predicate.default OrderedIntIterableOrderedIntIterable. selectWithIndex(IntIntPredicate predicate)Returns a new OrderedIntIterable including all elements with corresponding indexes matching the specified predicate.default <R extends MutableIntCollection>
ROrderedIntIterable. selectWithIndex(IntIntPredicate predicate, R target)Returns a new MutableIntCollection including all elements with corresponding indexes matching the specified predicate.default ReversibleIntIterableReversibleIntIterable. selectWithIndex(IntIntPredicate predicate)Returns a new ReversibleIntIterable including all elements with corresponding indexes matching the specified predicate. -
Uses of IntIntPredicate in org.eclipse.collections.api.stack.primitive
Methods in org.eclipse.collections.api.stack.primitive with parameters of type IntIntPredicate Modifier and Type Method Description default ImmutableIntStackImmutableIntStack. rejectWithIndex(IntIntPredicate predicate)Returns a new ImmutableIntStack excluding all elements with corresponding indexes matching the specified predicate.default IntStackIntStack. rejectWithIndex(IntIntPredicate predicate)Returns a new IntStack excluding all elements with corresponding indexes matching the specified predicate.default MutableIntStackMutableIntStack. rejectWithIndex(IntIntPredicate predicate)Returns a new MutableIntStack excluding all elements with corresponding indexes matching the specified predicate.default ImmutableIntStackImmutableIntStack. selectWithIndex(IntIntPredicate predicate)Returns a new ImmutableIntStack including all elements with corresponding indexes matching the specified predicate.default IntStackIntStack. selectWithIndex(IntIntPredicate predicate)Returns a new IntStack including all elements with corresponding indexes matching the specified predicate.default MutableIntStackMutableIntStack. selectWithIndex(IntIntPredicate predicate)Returns a new MutableIntStack including all elements with corresponding indexes matching the specified predicate.
-