Uses of Interface
org.eclipse.collections.api.block.predicate.primitive.LongPredicate
Packages that use LongPredicate
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 LongPredicate in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type LongPredicateModifier and TypeMethodDescriptionbooleanLongIterable.allSatisfy(LongPredicate predicate) Returns true if all of the elements in the LongIterable return true for the specified predicate, otherwise returns false.booleanLongIterable.anySatisfy(LongPredicate predicate) Returns true if any of the elements in the LongIterable return true for the specified predicate, otherwise returns false.intLongIterable.count(LongPredicate predicate) Returns a count of the number of elements in the LongIterable that return true for the specified predicate.longLongIterable.detectIfNone(LongPredicate predicate, long ifNone) default booleanLongIterable.noneSatisfy(LongPredicate predicate) Returns true if none of the elements in the LongIterable return true for the specified predicate, otherwise returns false.LazyLongIterable.reject(LongPredicate predicate) LongIterable.reject(LongPredicate predicate) Returns a new LongIterable with all of the elements in the LongIterable that return false for the specified predicate.default <R extends MutableLongCollection>
RLongIterable.reject(LongPredicate predicate, R target) Same asLongIterable.reject(LongPredicate), only the results are added to the target MutableLongCollection.LazyLongIterable.select(LongPredicate predicate) LongIterable.select(LongPredicate predicate) Returns a new LongIterable with all of the elements in the LongIterable that return true for the specified predicate.default <R extends MutableLongCollection>
RLongIterable.select(LongPredicate predicate, R target) Same asLongIterable.select(LongPredicate), only the results are added to the target MutableLongCollection. -
Uses of LongPredicate in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive with parameters of type LongPredicateModifier and TypeMethodDescriptionImmutableLongBag.reject(LongPredicate predicate) LongBag.reject(LongPredicate predicate) MutableLongBag.reject(LongPredicate predicate) ImmutableLongBag.select(LongPredicate predicate) LongBag.select(LongPredicate predicate) MutableLongBag.select(LongPredicate predicate) -
Uses of LongPredicate in org.eclipse.collections.api.collection.primitive
Methods in org.eclipse.collections.api.collection.primitive with parameters of type LongPredicateModifier and TypeMethodDescriptionImmutableLongCollection.reject(LongPredicate predicate) MutableLongCollection.reject(LongPredicate predicate) default booleanMutableLongCollection.removeIf(LongPredicate predicate) ImmutableLongCollection.select(LongPredicate predicate) MutableLongCollection.select(LongPredicate predicate) -
Uses of LongPredicate in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive with parameters of type LongPredicateModifier and TypeMethodDescriptionImmutableLongList.reject(LongPredicate predicate) LongList.reject(LongPredicate predicate) MutableLongList.reject(LongPredicate predicate) ImmutableLongList.select(LongPredicate predicate) LongList.select(LongPredicate predicate) MutableLongList.select(LongPredicate predicate) -
Uses of LongPredicate in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type LongPredicateModifier and TypeMethodDescriptionImmutableByteLongMap.reject(LongPredicate predicate) ImmutableCharLongMap.reject(LongPredicate predicate) ImmutableDoubleLongMap.reject(LongPredicate predicate) ImmutableFloatLongMap.reject(LongPredicate predicate) ImmutableIntLongMap.reject(LongPredicate predicate) ImmutableLongLongMap.reject(LongPredicate predicate) ImmutableObjectLongMap.reject(LongPredicate predicate) ImmutableShortLongMap.reject(LongPredicate predicate) LongValuesMap.reject(LongPredicate predicate) MutableLongValuesMap.reject(LongPredicate predicate) MutableObjectLongMap.reject(LongPredicate predicate) ImmutableByteLongMap.select(LongPredicate predicate) ImmutableCharLongMap.select(LongPredicate predicate) ImmutableDoubleLongMap.select(LongPredicate predicate) ImmutableFloatLongMap.select(LongPredicate predicate) ImmutableIntLongMap.select(LongPredicate predicate) ImmutableLongLongMap.select(LongPredicate predicate) ImmutableObjectLongMap.select(LongPredicate predicate) ImmutableShortLongMap.select(LongPredicate predicate) LongValuesMap.select(LongPredicate predicate) MutableLongValuesMap.select(LongPredicate predicate) MutableObjectLongMap.select(LongPredicate predicate) -
Uses of LongPredicate in org.eclipse.collections.api.ordered.primitive
Methods in org.eclipse.collections.api.ordered.primitive with parameters of type LongPredicateModifier and TypeMethodDescriptionOrderedLongIterable.reject(LongPredicate predicate) ReversibleLongIterable.reject(LongPredicate predicate) OrderedLongIterable.select(LongPredicate predicate) ReversibleLongIterable.select(LongPredicate predicate) -
Uses of LongPredicate in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive with parameters of type LongPredicateModifier and TypeMethodDescriptionImmutableLongSet.reject(LongPredicate predicate) LongSet.reject(LongPredicate predicate) MutableLongSet.reject(LongPredicate predicate) ImmutableLongSet.select(LongPredicate predicate) LongSet.select(LongPredicate predicate) MutableLongSet.select(LongPredicate predicate) -
Uses of LongPredicate in org.eclipse.collections.api.stack.primitive
Methods in org.eclipse.collections.api.stack.primitive with parameters of type LongPredicateModifier and TypeMethodDescriptionImmutableLongStack.reject(LongPredicate predicate) LongStack.reject(LongPredicate predicate) MutableLongStack.reject(LongPredicate predicate) ImmutableLongStack.select(LongPredicate predicate) LongStack.select(LongPredicate predicate) MutableLongStack.select(LongPredicate predicate)