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.
This package contains implementations of the mutable primitive bag interfaces.
This package contains factory implementations for primitive functions, primitive predicates, primitive procedures and primitive comparators.
This package contains implementations of primitive functions.
This package contains implementations of primitive procedures.
This package contains implementations of the mutable primitive collection interfaces.
This package contains implementations of the lazy primitive iterator interfaces.
This package contains implementations of the mutable primitive list interfaces.
This package contains implementations of the primitive list interfaces.
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the mutable primitive set interfaces.
This package contains implementations of the mutable primitive stack interfaces.
-
Uses of LongPredicate in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type LongPredicateModifier and TypeMethodDescriptionboolean
LongIterable.allSatisfy
(LongPredicate predicate) Returns true if all of the elements in the LongIterable return true for the specified predicate, otherwise returns false.boolean
LongIterable.anySatisfy
(LongPredicate predicate) Returns true if any of the elements in the LongIterable return true for the specified predicate, otherwise returns false.int
LongIterable.count
(LongPredicate predicate) Returns a count of the number of elements in the LongIterable that return true for the specified predicate.long
LongIterable.detectIfNone
(LongPredicate predicate, long ifNone) default boolean
LongIterable.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 boolean
MutableLongCollection.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) -
Uses of LongPredicate in org.eclipse.collections.impl.bag.mutable.primitive
Methods in org.eclipse.collections.impl.bag.mutable.primitive with parameters of type LongPredicateModifier and TypeMethodDescriptionboolean
LongHashBag.allSatisfy
(LongPredicate predicate) boolean
LongHashBag.anySatisfy
(LongPredicate predicate) int
LongHashBag.count
(LongPredicate predicate) long
LongHashBag.detectIfNone
(LongPredicate predicate, long ifNone) boolean
LongHashBag.noneSatisfy
(LongPredicate predicate) LongHashBag.reject
(LongPredicate predicate) SynchronizedLongBag.reject
(LongPredicate predicate) UnmodifiableLongBag.reject
(LongPredicate predicate) boolean
LongHashBag.removeIf
(LongPredicate predicate) LongHashBag.select
(LongPredicate predicate) SynchronizedLongBag.select
(LongPredicate predicate) UnmodifiableLongBag.select
(LongPredicate predicate) -
Uses of LongPredicate in org.eclipse.collections.impl.block.factory.primitive
Methods in org.eclipse.collections.impl.block.factory.primitive that return LongPredicateModifier and TypeMethodDescriptionstatic LongPredicate
LongPredicates.alwaysFalse()
static LongPredicate
LongPredicates.alwaysTrue()
static LongPredicate
LongPredicates.and
(LongPredicate one, LongPredicate two) static LongPredicate
LongPredicates.equal
(long expected) static LongPredicate
LongPredicates.greaterThan
(long expected) static LongPredicate
LongPredicates.isEven()
static LongPredicate
LongPredicates.isOdd()
static LongPredicate
LongPredicates.lessThan
(long expected) static LongPredicate
LongPredicates.not
(LongPredicate negate) static LongPredicate
LongPredicates.or
(LongPredicate one, LongPredicate two) Methods in org.eclipse.collections.impl.block.factory.primitive with parameters of type LongPredicateModifier and TypeMethodDescriptionstatic LongPredicate
LongPredicates.and
(LongPredicate one, LongPredicate two) static LongPredicate
LongPredicates.not
(LongPredicate negate) static LongPredicate
LongPredicates.or
(LongPredicate one, LongPredicate two) -
Uses of LongPredicate in org.eclipse.collections.impl.block.function.primitive
Methods in org.eclipse.collections.impl.block.function.primitive with parameters of type LongPredicateModifier and TypeMethodDescriptionLongCaseFunction.addCase
(LongPredicate predicate, LongToObjectFunction<? extends V> function) -
Uses of LongPredicate in org.eclipse.collections.impl.block.procedure.primitive
Methods in org.eclipse.collections.impl.block.procedure.primitive with parameters of type LongPredicateModifier and TypeMethodDescriptionLongCaseProcedure.addCase
(LongPredicate predicate, LongProcedure procedure) -
Uses of LongPredicate in org.eclipse.collections.impl.collection.mutable.primitive
Methods in org.eclipse.collections.impl.collection.mutable.primitive with parameters of type LongPredicateModifier and TypeMethodDescriptionboolean
AbstractSynchronizedLongCollection.allSatisfy
(LongPredicate predicate) boolean
AbstractUnmodifiableLongCollection.allSatisfy
(LongPredicate predicate) boolean
AbstractSynchronizedLongCollection.anySatisfy
(LongPredicate predicate) boolean
AbstractUnmodifiableLongCollection.anySatisfy
(LongPredicate predicate) int
AbstractSynchronizedLongCollection.count
(LongPredicate predicate) int
AbstractUnmodifiableLongCollection.count
(LongPredicate predicate) long
AbstractSynchronizedLongCollection.detectIfNone
(LongPredicate predicate, long ifNone) long
AbstractUnmodifiableLongCollection.detectIfNone
(LongPredicate predicate, long ifNone) boolean
AbstractSynchronizedLongCollection.noneSatisfy
(LongPredicate predicate) boolean
AbstractUnmodifiableLongCollection.noneSatisfy
(LongPredicate predicate) AbstractSynchronizedLongCollection.reject
(LongPredicate predicate) AbstractUnmodifiableLongCollection.reject
(LongPredicate predicate) boolean
AbstractSynchronizedLongCollection.removeIf
(LongPredicate predicate) boolean
AbstractUnmodifiableLongCollection.removeIf
(LongPredicate predicate) AbstractSynchronizedLongCollection.select
(LongPredicate predicate) AbstractUnmodifiableLongCollection.select
(LongPredicate predicate) -
Uses of LongPredicate in org.eclipse.collections.impl.lazy.primitive
Methods in org.eclipse.collections.impl.lazy.primitive with parameters of type LongPredicateModifier and TypeMethodDescriptionboolean
AbstractLazyLongIterable.allSatisfy
(LongPredicate predicate) boolean
CollectLongIterable.allSatisfy
(LongPredicate predicate) boolean
LazyLongIterableAdapter.allSatisfy
(LongPredicate predicate) boolean
SelectLongIterable.allSatisfy
(LongPredicate predicate) boolean
TapLongIterable.allSatisfy
(LongPredicate predicate) boolean
AbstractLazyLongIterable.anySatisfy
(LongPredicate predicate) boolean
CollectLongIterable.anySatisfy
(LongPredicate predicate) boolean
LazyLongIterableAdapter.anySatisfy
(LongPredicate predicate) boolean
SelectLongIterable.anySatisfy
(LongPredicate predicate) boolean
TapLongIterable.anySatisfy
(LongPredicate predicate) int
AbstractLazyLongIterable.count
(LongPredicate predicate) int
CollectLongIterable.count
(LongPredicate predicate) int
LazyLongIterableAdapter.count
(LongPredicate predicate) int
SelectLongIterable.count
(LongPredicate predicate) long
AbstractLazyLongIterable.detectIfNone
(LongPredicate predicate, long ifNone) long
LazyLongIterableAdapter.detectIfNone
(LongPredicate predicate, long ifNone) long
TapLongIterable.detectIfNone
(LongPredicate predicate, long ifNone) boolean
AbstractLazyLongIterable.noneSatisfy
(LongPredicate predicate) boolean
LazyLongIterableAdapter.noneSatisfy
(LongPredicate predicate) boolean
TapLongIterable.noneSatisfy
(LongPredicate predicate) AbstractLazyLongIterable.reject
(LongPredicate predicate) AbstractLazyLongIterable.select
(LongPredicate predicate) Constructors in org.eclipse.collections.impl.lazy.primitive with parameters of type LongPredicate -
Uses of LongPredicate in org.eclipse.collections.impl.list.mutable.primitive
Methods in org.eclipse.collections.impl.list.mutable.primitive with parameters of type LongPredicateModifier and TypeMethodDescriptionboolean
LongArrayList.allSatisfy
(LongPredicate predicate) boolean
LongArrayList.anySatisfy
(LongPredicate predicate) int
LongArrayList.count
(LongPredicate predicate) long
LongArrayList.detectIfNone
(LongPredicate predicate, long ifNone) LongArrayList.reject
(LongPredicate predicate) <R extends MutableLongCollection>
RLongArrayList.reject
(LongPredicate predicate, R target) SynchronizedLongList.reject
(LongPredicate predicate) UnmodifiableLongList.reject
(LongPredicate predicate) boolean
LongArrayList.removeIf
(LongPredicate predicate) LongArrayList.select
(LongPredicate predicate) <R extends MutableLongCollection>
RLongArrayList.select
(LongPredicate predicate, R target) SynchronizedLongList.select
(LongPredicate predicate) UnmodifiableLongList.select
(LongPredicate predicate) -
Uses of LongPredicate in org.eclipse.collections.impl.list.primitive
Methods in org.eclipse.collections.impl.list.primitive with parameters of type LongPredicateModifier and TypeMethodDescriptionboolean
LongInterval.allSatisfy
(LongPredicate predicate) boolean
LongInterval.anySatisfy
(LongPredicate predicate) int
LongInterval.count
(LongPredicate predicate) long
LongInterval.detectIfNone
(LongPredicate predicate, long ifNone) LongInterval.reject
(LongPredicate predicate) LongInterval.select
(LongPredicate predicate) -
Uses of LongPredicate in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type LongPredicateModifier and TypeMethodDescriptionboolean
AbstractMutableLongKeySet.allSatisfy
(LongPredicate predicate) boolean
AbstractMutableLongValuesMap.allSatisfy
(LongPredicate predicate) boolean
ObjectLongHashMap.allSatisfy
(LongPredicate predicate) boolean
ObjectLongHashMapWithHashingStrategy.allSatisfy
(LongPredicate predicate) boolean
SynchronizedByteLongMap.allSatisfy
(LongPredicate predicate) boolean
SynchronizedCharLongMap.allSatisfy
(LongPredicate predicate) boolean
SynchronizedDoubleLongMap.allSatisfy
(LongPredicate predicate) boolean
SynchronizedFloatLongMap.allSatisfy
(LongPredicate predicate) boolean
SynchronizedIntLongMap.allSatisfy
(LongPredicate predicate) boolean
SynchronizedLongLongMap.allSatisfy
(LongPredicate predicate) boolean
SynchronizedObjectLongMap.allSatisfy
(LongPredicate predicate) boolean
SynchronizedShortLongMap.allSatisfy
(LongPredicate predicate) boolean
UnmodifiableByteLongMap.allSatisfy
(LongPredicate predicate) boolean
UnmodifiableCharLongMap.allSatisfy
(LongPredicate predicate) boolean
UnmodifiableDoubleLongMap.allSatisfy
(LongPredicate predicate) boolean
UnmodifiableFloatLongMap.allSatisfy
(LongPredicate predicate) boolean
UnmodifiableIntLongMap.allSatisfy
(LongPredicate predicate) boolean
UnmodifiableLongLongMap.allSatisfy
(LongPredicate predicate) boolean
UnmodifiableObjectLongMap.allSatisfy
(LongPredicate predicate) boolean
UnmodifiableShortLongMap.allSatisfy
(LongPredicate predicate) boolean
AbstractMutableLongKeySet.anySatisfy
(LongPredicate predicate) boolean
AbstractMutableLongValuesMap.anySatisfy
(LongPredicate predicate) boolean
ObjectLongHashMap.anySatisfy
(LongPredicate predicate) boolean
ObjectLongHashMapWithHashingStrategy.anySatisfy
(LongPredicate predicate) boolean
SynchronizedByteLongMap.anySatisfy
(LongPredicate predicate) boolean
SynchronizedCharLongMap.anySatisfy
(LongPredicate predicate) boolean
SynchronizedDoubleLongMap.anySatisfy
(LongPredicate predicate) boolean
SynchronizedFloatLongMap.anySatisfy
(LongPredicate predicate) boolean
SynchronizedIntLongMap.anySatisfy
(LongPredicate predicate) boolean
SynchronizedLongLongMap.anySatisfy
(LongPredicate predicate) boolean
SynchronizedObjectLongMap.anySatisfy
(LongPredicate predicate) boolean
SynchronizedShortLongMap.anySatisfy
(LongPredicate predicate) boolean
UnmodifiableByteLongMap.anySatisfy
(LongPredicate predicate) boolean
UnmodifiableCharLongMap.anySatisfy
(LongPredicate predicate) boolean
UnmodifiableDoubleLongMap.anySatisfy
(LongPredicate predicate) boolean
UnmodifiableFloatLongMap.anySatisfy
(LongPredicate predicate) boolean
UnmodifiableIntLongMap.anySatisfy
(LongPredicate predicate) boolean
UnmodifiableLongLongMap.anySatisfy
(LongPredicate predicate) boolean
UnmodifiableObjectLongMap.anySatisfy
(LongPredicate predicate) boolean
UnmodifiableShortLongMap.anySatisfy
(LongPredicate predicate) int
AbstractMutableLongKeySet.count
(LongPredicate predicate) int
AbstractMutableLongValuesMap.count
(LongPredicate predicate) int
ObjectLongHashMap.count
(LongPredicate predicate) int
ObjectLongHashMapWithHashingStrategy.count
(LongPredicate predicate) int
SynchronizedByteLongMap.count
(LongPredicate predicate) int
SynchronizedCharLongMap.count
(LongPredicate predicate) int
SynchronizedDoubleLongMap.count
(LongPredicate predicate) int
SynchronizedFloatLongMap.count
(LongPredicate predicate) int
SynchronizedIntLongMap.count
(LongPredicate predicate) int
SynchronizedLongLongMap.count
(LongPredicate predicate) int
SynchronizedObjectLongMap.count
(LongPredicate predicate) int
SynchronizedShortLongMap.count
(LongPredicate predicate) int
UnmodifiableByteLongMap.count
(LongPredicate predicate) int
UnmodifiableCharLongMap.count
(LongPredicate predicate) int
UnmodifiableDoubleLongMap.count
(LongPredicate predicate) int
UnmodifiableFloatLongMap.count
(LongPredicate predicate) int
UnmodifiableIntLongMap.count
(LongPredicate predicate) int
UnmodifiableLongLongMap.count
(LongPredicate predicate) int
UnmodifiableObjectLongMap.count
(LongPredicate predicate) int
UnmodifiableShortLongMap.count
(LongPredicate predicate) long
AbstractMutableLongKeySet.detectIfNone
(LongPredicate predicate, long ifNone) long
AbstractMutableLongValuesMap.detectIfNone
(LongPredicate predicate, long value) long
ObjectLongHashMap.detectIfNone
(LongPredicate predicate, long ifNone) long
ObjectLongHashMapWithHashingStrategy.detectIfNone
(LongPredicate predicate, long ifNone) long
SynchronizedByteLongMap.detectIfNone
(LongPredicate predicate, long ifNone) long
SynchronizedCharLongMap.detectIfNone
(LongPredicate predicate, long ifNone) long
SynchronizedDoubleLongMap.detectIfNone
(LongPredicate predicate, long ifNone) long
SynchronizedFloatLongMap.detectIfNone
(LongPredicate predicate, long ifNone) long
SynchronizedIntLongMap.detectIfNone
(LongPredicate predicate, long ifNone) long
SynchronizedLongLongMap.detectIfNone
(LongPredicate predicate, long ifNone) long
SynchronizedObjectLongMap.detectIfNone
(LongPredicate predicate, long ifNone) long
SynchronizedShortLongMap.detectIfNone
(LongPredicate predicate, long ifNone) long
UnmodifiableByteLongMap.detectIfNone
(LongPredicate predicate, long ifNone) long
UnmodifiableCharLongMap.detectIfNone
(LongPredicate predicate, long ifNone) long
UnmodifiableDoubleLongMap.detectIfNone
(LongPredicate predicate, long ifNone) long
UnmodifiableFloatLongMap.detectIfNone
(LongPredicate predicate, long ifNone) long
UnmodifiableIntLongMap.detectIfNone
(LongPredicate predicate, long ifNone) long
UnmodifiableLongLongMap.detectIfNone
(LongPredicate predicate, long ifNone) long
UnmodifiableObjectLongMap.detectIfNone
(LongPredicate predicate, long ifNone) long
UnmodifiableShortLongMap.detectIfNone
(LongPredicate predicate, long ifNone) boolean
ObjectLongHashMap.noneSatisfy
(LongPredicate predicate) boolean
ObjectLongHashMapWithHashingStrategy.noneSatisfy
(LongPredicate predicate) boolean
SynchronizedByteLongMap.noneSatisfy
(LongPredicate predicate) boolean
SynchronizedCharLongMap.noneSatisfy
(LongPredicate predicate) boolean
SynchronizedDoubleLongMap.noneSatisfy
(LongPredicate predicate) boolean
SynchronizedFloatLongMap.noneSatisfy
(LongPredicate predicate) boolean
SynchronizedIntLongMap.noneSatisfy
(LongPredicate predicate) boolean
SynchronizedLongLongMap.noneSatisfy
(LongPredicate predicate) boolean
SynchronizedObjectLongMap.noneSatisfy
(LongPredicate predicate) boolean
SynchronizedShortLongMap.noneSatisfy
(LongPredicate predicate) boolean
UnmodifiableByteLongMap.noneSatisfy
(LongPredicate predicate) boolean
UnmodifiableCharLongMap.noneSatisfy
(LongPredicate predicate) boolean
UnmodifiableDoubleLongMap.noneSatisfy
(LongPredicate predicate) boolean
UnmodifiableFloatLongMap.noneSatisfy
(LongPredicate predicate) boolean
UnmodifiableIntLongMap.noneSatisfy
(LongPredicate predicate) boolean
UnmodifiableLongLongMap.noneSatisfy
(LongPredicate predicate) boolean
UnmodifiableObjectLongMap.noneSatisfy
(LongPredicate predicate) boolean
UnmodifiableShortLongMap.noneSatisfy
(LongPredicate predicate) AbstractMutableLongKeySet.reject
(LongPredicate predicate) AbstractMutableLongValuesMap.reject
(LongPredicate predicate) ObjectLongHashMap.reject
(LongPredicate predicate) ObjectLongHashMapWithHashingStrategy.reject
(LongPredicate predicate) SynchronizedByteLongMap.reject
(LongPredicate predicate) SynchronizedCharLongMap.reject
(LongPredicate predicate) SynchronizedDoubleLongMap.reject
(LongPredicate predicate) SynchronizedFloatLongMap.reject
(LongPredicate predicate) SynchronizedIntLongMap.reject
(LongPredicate predicate) SynchronizedLongLongMap.reject
(LongPredicate predicate) SynchronizedObjectLongMap.reject
(LongPredicate predicate) SynchronizedShortLongMap.reject
(LongPredicate predicate) UnmodifiableByteLongMap.reject
(LongPredicate predicate) UnmodifiableCharLongMap.reject
(LongPredicate predicate) UnmodifiableDoubleLongMap.reject
(LongPredicate predicate) UnmodifiableFloatLongMap.reject
(LongPredicate predicate) UnmodifiableIntLongMap.reject
(LongPredicate predicate) UnmodifiableLongLongMap.reject
(LongPredicate predicate) UnmodifiableObjectLongMap.reject
(LongPredicate predicate) UnmodifiableShortLongMap.reject
(LongPredicate predicate) AbstractMutableLongKeySet.select
(LongPredicate predicate) AbstractMutableLongValuesMap.select
(LongPredicate predicate) ObjectLongHashMap.select
(LongPredicate predicate) ObjectLongHashMapWithHashingStrategy.select
(LongPredicate predicate) SynchronizedByteLongMap.select
(LongPredicate predicate) SynchronizedCharLongMap.select
(LongPredicate predicate) SynchronizedDoubleLongMap.select
(LongPredicate predicate) SynchronizedFloatLongMap.select
(LongPredicate predicate) SynchronizedIntLongMap.select
(LongPredicate predicate) SynchronizedLongLongMap.select
(LongPredicate predicate) SynchronizedObjectLongMap.select
(LongPredicate predicate) SynchronizedShortLongMap.select
(LongPredicate predicate) UnmodifiableByteLongMap.select
(LongPredicate predicate) UnmodifiableCharLongMap.select
(LongPredicate predicate) UnmodifiableDoubleLongMap.select
(LongPredicate predicate) UnmodifiableFloatLongMap.select
(LongPredicate predicate) UnmodifiableIntLongMap.select
(LongPredicate predicate) UnmodifiableLongLongMap.select
(LongPredicate predicate) UnmodifiableObjectLongMap.select
(LongPredicate predicate) UnmodifiableShortLongMap.select
(LongPredicate predicate) -
Uses of LongPredicate in org.eclipse.collections.impl.primitive
Methods in org.eclipse.collections.impl.primitive with parameters of type LongPredicateModifier and TypeMethodDescriptionboolean
SynchronizedLongIterable.allSatisfy
(LongPredicate predicate) boolean
SynchronizedLongIterable.anySatisfy
(LongPredicate predicate) int
SynchronizedLongIterable.count
(LongPredicate predicate) long
SynchronizedLongIterable.detectIfNone
(LongPredicate predicate, long ifNone) boolean
SynchronizedLongIterable.noneSatisfy
(LongPredicate predicate) SynchronizedLongIterable.reject
(LongPredicate predicate) SynchronizedLongIterable.select
(LongPredicate predicate) -
Uses of LongPredicate in org.eclipse.collections.impl.set.mutable.primitive
Methods in org.eclipse.collections.impl.set.mutable.primitive with parameters of type LongPredicateModifier and TypeMethodDescriptionboolean
LongHashSet.allSatisfy
(LongPredicate predicate) boolean
LongHashSet.anySatisfy
(LongPredicate predicate) int
LongHashSet.count
(LongPredicate predicate) long
LongHashSet.detectIfNone
(LongPredicate predicate, long ifNone) LongHashSet.reject
(LongPredicate predicate) <R extends MutableLongCollection>
RLongHashSet.reject
(LongPredicate predicate, R target) SynchronizedLongSet.reject
(LongPredicate predicate) UnmodifiableLongSet.reject
(LongPredicate predicate) LongHashSet.select
(LongPredicate predicate) <R extends MutableLongCollection>
RLongHashSet.select
(LongPredicate predicate, R target) SynchronizedLongSet.select
(LongPredicate predicate) UnmodifiableLongSet.select
(LongPredicate predicate) -
Uses of LongPredicate in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive with parameters of type LongPredicateModifier and TypeMethodDescriptionboolean
SynchronizedLongStack.allSatisfy
(LongPredicate predicate) boolean
UnmodifiableLongStack.allSatisfy
(LongPredicate predicate) boolean
SynchronizedLongStack.anySatisfy
(LongPredicate predicate) boolean
UnmodifiableLongStack.anySatisfy
(LongPredicate predicate) int
SynchronizedLongStack.count
(LongPredicate predicate) int
UnmodifiableLongStack.count
(LongPredicate predicate) long
SynchronizedLongStack.detectIfNone
(LongPredicate predicate, long ifNone) long
UnmodifiableLongStack.detectIfNone
(LongPredicate predicate, long ifNone) boolean
SynchronizedLongStack.noneSatisfy
(LongPredicate predicate) boolean
UnmodifiableLongStack.noneSatisfy
(LongPredicate predicate) LongArrayStack.reject
(LongPredicate predicate) SynchronizedLongStack.reject
(LongPredicate predicate) UnmodifiableLongStack.reject
(LongPredicate predicate) LongArrayStack.select
(LongPredicate predicate) SynchronizedLongStack.select
(LongPredicate predicate) UnmodifiableLongStack.select
(LongPredicate predicate) -
Uses of LongPredicate in org.eclipse.collections.impl.stack.primitive
Methods in org.eclipse.collections.impl.stack.primitive with parameters of type LongPredicateModifier and TypeMethodDescriptionboolean
AbstractLongStack.allSatisfy
(LongPredicate predicate) boolean
AbstractLongStack.anySatisfy
(LongPredicate predicate) int
AbstractLongStack.count
(LongPredicate predicate) long
AbstractLongStack.detectIfNone
(LongPredicate predicate, long ifNone) boolean
AbstractLongStack.noneSatisfy
(LongPredicate predicate) -
Uses of LongPredicate in org.eclipse.collections.impl.utility.internal.primitive
Methods in org.eclipse.collections.impl.utility.internal.primitive with parameters of type LongPredicateModifier and TypeMethodDescriptionstatic boolean
LongIterableIterate.allSatisfy
(LongIterable iterable, LongPredicate predicate) static boolean
LongIteratorIterate.allSatisfy
(LongIterator iterator, LongPredicate predicate) static boolean
LongIterableIterate.anySatisfy
(LongIterable iterable, LongPredicate predicate) static boolean
LongIteratorIterate.anySatisfy
(LongIterator iterator, LongPredicate predicate) static int
LongIterableIterate.count
(LongIterable iterable, LongPredicate predicate) static int
LongIteratorIterate.count
(LongIterator iterator, LongPredicate predicate) static long
LongIterableIterate.detectIfNone
(LongIterable iterable, LongPredicate predicate, long ifNone) static long
LongIteratorIterate.detectIfNone
(LongIterator iterator, LongPredicate predicate, long ifNone) static boolean
LongIterableIterate.noneSatisfy
(LongIterable iterable, LongPredicate predicate) static boolean
LongIteratorIterate.noneSatisfy
(LongIterator iterator, LongPredicate predicate) static <R extends MutableLongCollection>
RLongIterableIterate.reject
(LongIterable iterable, LongPredicate predicate, R targetCollection) static <R extends MutableLongCollection>
RLongIteratorIterate.reject
(LongIterator iterator, LongPredicate predicate, R targetCollection) static <R extends MutableLongCollection>
RLongIterableIterate.select
(LongIterable iterable, LongPredicate predicate, R targetCollection) static <R extends MutableLongCollection>
RLongIteratorIterate.select
(LongIterator iterator, LongPredicate predicate, R targetCollection) -
Uses of LongPredicate in org.eclipse.collections.impl.utility.primitive
Methods in org.eclipse.collections.impl.utility.primitive with parameters of type LongPredicateModifier and TypeMethodDescriptionstatic <V> LazyIterable<V>
LazyLongIterate.collectIf
(LongIterable iterable, LongPredicate predicate, LongToObjectFunction<? extends V> function) Creates a deferred filtering and transforming long iterable for the specified long iterable.static LazyLongIterable
LazyLongIterate.select
(LongIterable iterable, LongPredicate predicate) Creates a deferred filtering long iterable for the specified long iterable.