Uses of Interface
org.eclipse.collections.api.block.predicate.primitive.ShortIntPredicate
-
Packages that use ShortIntPredicate 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 ShortIntPredicate in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive with parameters of type ShortIntPredicate Modifier and Type Method Description default ImmutableShortListImmutableShortList. rejectWithIndex(ShortIntPredicate predicate)Returns a new ImmutableShortList excluding all elements with corresponding indexes matching the specified predicate.default MutableShortListMutableShortList. rejectWithIndex(ShortIntPredicate predicate)Returns a new MutableShortList excluding all elements with corresponding indexes matching the specified predicate.default ShortListShortList. rejectWithIndex(ShortIntPredicate predicate)Returns a new ShortList excluding all elements with corresponding indexes matching the specified predicate.default ImmutableShortListImmutableShortList. selectWithIndex(ShortIntPredicate predicate)Returns a new ImmutableShortList including all elements with corresponding indexes matching the specified predicate.default MutableShortListMutableShortList. selectWithIndex(ShortIntPredicate predicate)Returns a new MutableShortList including all elements with corresponding indexes matching the specified predicate.default ShortListShortList. selectWithIndex(ShortIntPredicate predicate)Returns a new ShortList including all elements with corresponding indexes matching the specified predicate. -
Uses of ShortIntPredicate in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type ShortIntPredicate Modifier and Type Method Description ImmutableShortIntMapImmutableShortIntMap. reject(ShortIntPredicate predicate)MutableShortIntMapMutableShortIntMap. reject(ShortIntPredicate predicate)ShortIntMapShortIntMap. reject(ShortIntPredicate predicate)Return a copy of this map containing only the key/value pairs that do not match the predicate.ImmutableShortIntMapImmutableShortIntMap. select(ShortIntPredicate predicate)MutableShortIntMapMutableShortIntMap. select(ShortIntPredicate predicate)ShortIntMapShortIntMap. select(ShortIntPredicate predicate)Return a copy of this map containing only the key/value pairs that match the predicate. -
Uses of ShortIntPredicate in org.eclipse.collections.api.ordered.primitive
Methods in org.eclipse.collections.api.ordered.primitive with parameters of type ShortIntPredicate Modifier and Type Method Description default OrderedShortIterableOrderedShortIterable. rejectWithIndex(ShortIntPredicate predicate)Returns a new OrderedShortIterable excluding all elements with corresponding indexes matching the specified predicate.default <R extends MutableShortCollection>
ROrderedShortIterable. rejectWithIndex(ShortIntPredicate predicate, R target)Returns a new MutableShortCollection excluding all elements with corresponding indexes matching the specified predicate.default ReversibleShortIterableReversibleShortIterable. rejectWithIndex(ShortIntPredicate predicate)Returns a new ReversibleShortIterable excluding all elements with corresponding indexes matching the specified predicate.default OrderedShortIterableOrderedShortIterable. selectWithIndex(ShortIntPredicate predicate)Returns a new OrderedShortIterable including all elements with corresponding indexes matching the specified predicate.default <R extends MutableShortCollection>
ROrderedShortIterable. selectWithIndex(ShortIntPredicate predicate, R target)Returns a new MutableShortCollection including all elements with corresponding indexes matching the specified predicate.default ReversibleShortIterableReversibleShortIterable. selectWithIndex(ShortIntPredicate predicate)Returns a new ReversibleShortIterable including all elements with corresponding indexes matching the specified predicate. -
Uses of ShortIntPredicate in org.eclipse.collections.api.stack.primitive
Methods in org.eclipse.collections.api.stack.primitive with parameters of type ShortIntPredicate Modifier and Type Method Description default ImmutableShortStackImmutableShortStack. rejectWithIndex(ShortIntPredicate predicate)Returns a new ImmutableShortStack excluding all elements with corresponding indexes matching the specified predicate.default MutableShortStackMutableShortStack. rejectWithIndex(ShortIntPredicate predicate)Returns a new MutableShortStack excluding all elements with corresponding indexes matching the specified predicate.default ShortStackShortStack. rejectWithIndex(ShortIntPredicate predicate)Returns a new ShortStack excluding all elements with corresponding indexes matching the specified predicate.default ImmutableShortStackImmutableShortStack. selectWithIndex(ShortIntPredicate predicate)Returns a new ImmutableShortStack including all elements with corresponding indexes matching the specified predicate.default MutableShortStackMutableShortStack. selectWithIndex(ShortIntPredicate predicate)Returns a new MutableShortStack including all elements with corresponding indexes matching the specified predicate.default ShortStackShortStack. selectWithIndex(ShortIntPredicate predicate)Returns a new ShortStack including all elements with corresponding indexes matching the specified predicate.
-