Uses of Interface
org.eclipse.collections.api.block.predicate.primitive.ShortPredicate
Packages that use ShortPredicate
Package
Description
This package contains interfaces for Eclipse Collections API.
This package contains API for Primitive Bags with Mutable and Immutable variants.
This package contains mutable and immutable primitive collection API.
This package contains mutable and immutable primitive list API.
This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
This package contains API for mutable and immutable primitive sets.
This package contains mutable and immutable primitive stack API.
-
Uses of ShortPredicate in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type ShortPredicateModifier and TypeMethodDescriptionbooleanShortIterable.allSatisfy(ShortPredicate predicate) Returns true if all of the elements in the ShortIterable return true for the specified predicate, otherwise returns false.booleanShortIterable.anySatisfy(ShortPredicate predicate) Returns true if any of the elements in the ShortIterable return true for the specified predicate, otherwise returns false.intShortIterable.count(ShortPredicate predicate) Returns a count of the number of elements in the ShortIterable that return true for the specified predicate.shortShortIterable.detectIfNone(ShortPredicate predicate, short ifNone) default booleanShortIterable.noneSatisfy(ShortPredicate predicate) Returns true if none of the elements in the ShortIterable return true for the specified predicate, otherwise returns false.LazyShortIterable.reject(ShortPredicate predicate) ShortIterable.reject(ShortPredicate predicate) Returns a new ShortIterable with all of the elements in the ShortIterable that return false for the specified predicate.default <R extends MutableShortCollection>
RShortIterable.reject(ShortPredicate predicate, R target) Same asShortIterable.reject(ShortPredicate), only the results are added to the target MutableShortCollection.LazyShortIterable.select(ShortPredicate predicate) ShortIterable.select(ShortPredicate predicate) Returns a new ShortIterable with all of the elements in the ShortIterable that return true for the specified predicate.default <R extends MutableShortCollection>
RShortIterable.select(ShortPredicate predicate, R target) Same asShortIterable.select(ShortPredicate), only the results are added to the target MutableShortCollection. -
Uses of ShortPredicate in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive with parameters of type ShortPredicateModifier and TypeMethodDescriptionImmutableShortBag.reject(ShortPredicate predicate) MutableShortBag.reject(ShortPredicate predicate) ShortBag.reject(ShortPredicate predicate) ImmutableShortBag.select(ShortPredicate predicate) MutableShortBag.select(ShortPredicate predicate) ShortBag.select(ShortPredicate predicate) -
Uses of ShortPredicate in org.eclipse.collections.api.collection.primitive
Methods in org.eclipse.collections.api.collection.primitive with parameters of type ShortPredicateModifier and TypeMethodDescriptionImmutableShortCollection.reject(ShortPredicate predicate) MutableShortCollection.reject(ShortPredicate predicate) default booleanMutableShortCollection.removeIf(ShortPredicate predicate) ImmutableShortCollection.select(ShortPredicate predicate) MutableShortCollection.select(ShortPredicate predicate) -
Uses of ShortPredicate in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive with parameters of type ShortPredicateModifier and TypeMethodDescriptionImmutableShortList.reject(ShortPredicate predicate) MutableShortList.reject(ShortPredicate predicate) ShortList.reject(ShortPredicate predicate) ImmutableShortList.select(ShortPredicate predicate) MutableShortList.select(ShortPredicate predicate) ShortList.select(ShortPredicate predicate) -
Uses of ShortPredicate in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type ShortPredicateModifier and TypeMethodDescriptionImmutableByteShortMap.reject(ShortPredicate predicate) ImmutableCharShortMap.reject(ShortPredicate predicate) ImmutableDoubleShortMap.reject(ShortPredicate predicate) ImmutableFloatShortMap.reject(ShortPredicate predicate) ImmutableIntShortMap.reject(ShortPredicate predicate) ImmutableLongShortMap.reject(ShortPredicate predicate) ImmutableObjectShortMap.reject(ShortPredicate predicate) ImmutableShortShortMap.reject(ShortPredicate predicate) MutableObjectShortMap.reject(ShortPredicate predicate) MutableShortValuesMap.reject(ShortPredicate predicate) ShortValuesMap.reject(ShortPredicate predicate) ImmutableByteShortMap.select(ShortPredicate predicate) ImmutableCharShortMap.select(ShortPredicate predicate) ImmutableDoubleShortMap.select(ShortPredicate predicate) ImmutableFloatShortMap.select(ShortPredicate predicate) ImmutableIntShortMap.select(ShortPredicate predicate) ImmutableLongShortMap.select(ShortPredicate predicate) ImmutableObjectShortMap.select(ShortPredicate predicate) ImmutableShortShortMap.select(ShortPredicate predicate) MutableObjectShortMap.select(ShortPredicate predicate) MutableShortValuesMap.select(ShortPredicate predicate) ShortValuesMap.select(ShortPredicate predicate) -
Uses of ShortPredicate in org.eclipse.collections.api.ordered.primitive
Methods in org.eclipse.collections.api.ordered.primitive with parameters of type ShortPredicateModifier and TypeMethodDescriptionOrderedShortIterable.reject(ShortPredicate predicate) ReversibleShortIterable.reject(ShortPredicate predicate) OrderedShortIterable.select(ShortPredicate predicate) ReversibleShortIterable.select(ShortPredicate predicate) -
Uses of ShortPredicate in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive with parameters of type ShortPredicateModifier and TypeMethodDescriptionImmutableShortSet.reject(ShortPredicate predicate) MutableShortSet.reject(ShortPredicate predicate) ShortSet.reject(ShortPredicate predicate) ImmutableShortSet.select(ShortPredicate predicate) MutableShortSet.select(ShortPredicate predicate) ShortSet.select(ShortPredicate predicate) -
Uses of ShortPredicate in org.eclipse.collections.api.stack.primitive
Methods in org.eclipse.collections.api.stack.primitive with parameters of type ShortPredicateModifier and TypeMethodDescriptionImmutableShortStack.reject(ShortPredicate predicate) MutableShortStack.reject(ShortPredicate predicate) ShortStack.reject(ShortPredicate predicate) ImmutableShortStack.select(ShortPredicate predicate) MutableShortStack.select(ShortPredicate predicate) ShortStack.select(ShortPredicate predicate)