Uses of Interface
org.eclipse.collections.api.block.predicate.primitive.DoublePredicate
Packages that use DoublePredicate
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 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 DoublePredicate in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type DoublePredicateModifier and TypeMethodDescriptionboolean
DoubleIterable.allSatisfy
(DoublePredicate predicate) Returns true if all of the elements in the DoubleIterable return true for the specified predicate, otherwise returns false.boolean
DoubleIterable.anySatisfy
(DoublePredicate predicate) Returns true if any of the elements in the DoubleIterable return true for the specified predicate, otherwise returns false.int
DoubleIterable.count
(DoublePredicate predicate) Returns a count of the number of elements in the DoubleIterable that return true for the specified predicate.double
DoubleIterable.detectIfNone
(DoublePredicate predicate, double ifNone) default boolean
DoubleIterable.noneSatisfy
(DoublePredicate predicate) Returns true if none of the elements in the DoubleIterable return true for the specified predicate, otherwise returns false.DoubleIterable.reject
(DoublePredicate predicate) Returns a new DoubleIterable with all of the elements in the DoubleIterable that return false for the specified predicate.default <R extends MutableDoubleCollection>
RDoubleIterable.reject
(DoublePredicate predicate, R target) Same asDoubleIterable.reject(DoublePredicate)
, only the results are added to the target MutableDoubleCollection.LazyDoubleIterable.reject
(DoublePredicate predicate) DoubleIterable.select
(DoublePredicate predicate) Returns a new DoubleIterable with all of the elements in the DoubleIterable that return true for the specified predicate.default <R extends MutableDoubleCollection>
RDoubleIterable.select
(DoublePredicate predicate, R target) Same asDoubleIterable.select(DoublePredicate)
, only the results are added to the target MutableDoubleCollection.LazyDoubleIterable.select
(DoublePredicate predicate) -
Uses of DoublePredicate in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive with parameters of type DoublePredicateModifier and TypeMethodDescriptionDoubleBag.reject
(DoublePredicate predicate) ImmutableDoubleBag.reject
(DoublePredicate predicate) MutableDoubleBag.reject
(DoublePredicate predicate) DoubleBag.select
(DoublePredicate predicate) ImmutableDoubleBag.select
(DoublePredicate predicate) MutableDoubleBag.select
(DoublePredicate predicate) -
Uses of DoublePredicate in org.eclipse.collections.api.collection.primitive
Methods in org.eclipse.collections.api.collection.primitive with parameters of type DoublePredicateModifier and TypeMethodDescriptionImmutableDoubleCollection.reject
(DoublePredicate predicate) MutableDoubleCollection.reject
(DoublePredicate predicate) default boolean
MutableDoubleCollection.removeIf
(DoublePredicate predicate) ImmutableDoubleCollection.select
(DoublePredicate predicate) MutableDoubleCollection.select
(DoublePredicate predicate) -
Uses of DoublePredicate in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive with parameters of type DoublePredicateModifier and TypeMethodDescriptionDoubleList.reject
(DoublePredicate predicate) ImmutableDoubleList.reject
(DoublePredicate predicate) MutableDoubleList.reject
(DoublePredicate predicate) DoubleList.select
(DoublePredicate predicate) ImmutableDoubleList.select
(DoublePredicate predicate) MutableDoubleList.select
(DoublePredicate predicate) -
Uses of DoublePredicate in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type DoublePredicateModifier and TypeMethodDescriptionDoubleValuesMap.reject
(DoublePredicate predicate) ImmutableByteDoubleMap.reject
(DoublePredicate predicate) ImmutableCharDoubleMap.reject
(DoublePredicate predicate) ImmutableDoubleDoubleMap.reject
(DoublePredicate predicate) ImmutableFloatDoubleMap.reject
(DoublePredicate predicate) ImmutableIntDoubleMap.reject
(DoublePredicate predicate) ImmutableLongDoubleMap.reject
(DoublePredicate predicate) ImmutableObjectDoubleMap.reject
(DoublePredicate predicate) ImmutableShortDoubleMap.reject
(DoublePredicate predicate) MutableDoubleValuesMap.reject
(DoublePredicate predicate) MutableObjectDoubleMap.reject
(DoublePredicate predicate) DoubleValuesMap.select
(DoublePredicate predicate) ImmutableByteDoubleMap.select
(DoublePredicate predicate) ImmutableCharDoubleMap.select
(DoublePredicate predicate) ImmutableDoubleDoubleMap.select
(DoublePredicate predicate) ImmutableFloatDoubleMap.select
(DoublePredicate predicate) ImmutableIntDoubleMap.select
(DoublePredicate predicate) ImmutableLongDoubleMap.select
(DoublePredicate predicate) ImmutableObjectDoubleMap.select
(DoublePredicate predicate) ImmutableShortDoubleMap.select
(DoublePredicate predicate) MutableDoubleValuesMap.select
(DoublePredicate predicate) MutableObjectDoubleMap.select
(DoublePredicate predicate) -
Uses of DoublePredicate in org.eclipse.collections.api.ordered.primitive
Methods in org.eclipse.collections.api.ordered.primitive with parameters of type DoublePredicateModifier and TypeMethodDescriptionOrderedDoubleIterable.reject
(DoublePredicate predicate) ReversibleDoubleIterable.reject
(DoublePredicate predicate) OrderedDoubleIterable.select
(DoublePredicate predicate) ReversibleDoubleIterable.select
(DoublePredicate predicate) -
Uses of DoublePredicate in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive with parameters of type DoublePredicateModifier and TypeMethodDescriptionDoubleSet.reject
(DoublePredicate predicate) ImmutableDoubleSet.reject
(DoublePredicate predicate) MutableDoubleSet.reject
(DoublePredicate predicate) DoubleSet.select
(DoublePredicate predicate) ImmutableDoubleSet.select
(DoublePredicate predicate) MutableDoubleSet.select
(DoublePredicate predicate) -
Uses of DoublePredicate in org.eclipse.collections.api.stack.primitive
Methods in org.eclipse.collections.api.stack.primitive with parameters of type DoublePredicateModifier and TypeMethodDescriptionDoubleStack.reject
(DoublePredicate predicate) ImmutableDoubleStack.reject
(DoublePredicate predicate) MutableDoubleStack.reject
(DoublePredicate predicate) DoubleStack.select
(DoublePredicate predicate) ImmutableDoubleStack.select
(DoublePredicate predicate) MutableDoubleStack.select
(DoublePredicate predicate) -
Uses of DoublePredicate in org.eclipse.collections.impl.bag.mutable.primitive
Methods in org.eclipse.collections.impl.bag.mutable.primitive with parameters of type DoublePredicateModifier and TypeMethodDescriptionboolean
DoubleHashBag.allSatisfy
(DoublePredicate predicate) boolean
DoubleHashBag.anySatisfy
(DoublePredicate predicate) int
DoubleHashBag.count
(DoublePredicate predicate) double
DoubleHashBag.detectIfNone
(DoublePredicate predicate, double ifNone) boolean
DoubleHashBag.noneSatisfy
(DoublePredicate predicate) DoubleHashBag.reject
(DoublePredicate predicate) SynchronizedDoubleBag.reject
(DoublePredicate predicate) UnmodifiableDoubleBag.reject
(DoublePredicate predicate) boolean
DoubleHashBag.removeIf
(DoublePredicate predicate) DoubleHashBag.select
(DoublePredicate predicate) SynchronizedDoubleBag.select
(DoublePredicate predicate) UnmodifiableDoubleBag.select
(DoublePredicate predicate) -
Uses of DoublePredicate in org.eclipse.collections.impl.block.factory.primitive
Methods in org.eclipse.collections.impl.block.factory.primitive that return DoublePredicateModifier and TypeMethodDescriptionstatic DoublePredicate
DoublePredicates.alwaysFalse()
static DoublePredicate
DoublePredicates.alwaysTrue()
static DoublePredicate
DoublePredicates.and
(DoublePredicate one, DoublePredicate two) static DoublePredicate
DoublePredicates.equal
(double expected) static DoublePredicate
DoublePredicates.equal
(double expected, double delta) static DoublePredicate
DoublePredicates.greaterThan
(double expected) static DoublePredicate
DoublePredicates.lessThan
(double expected) static DoublePredicate
DoublePredicates.not
(DoublePredicate negate) static DoublePredicate
DoublePredicates.or
(DoublePredicate one, DoublePredicate two) Methods in org.eclipse.collections.impl.block.factory.primitive with parameters of type DoublePredicateModifier and TypeMethodDescriptionstatic DoublePredicate
DoublePredicates.and
(DoublePredicate one, DoublePredicate two) static DoublePredicate
DoublePredicates.not
(DoublePredicate negate) static DoublePredicate
DoublePredicates.or
(DoublePredicate one, DoublePredicate two) -
Uses of DoublePredicate in org.eclipse.collections.impl.block.function.primitive
Methods in org.eclipse.collections.impl.block.function.primitive with parameters of type DoublePredicateModifier and TypeMethodDescriptionDoubleCaseFunction.addCase
(DoublePredicate predicate, DoubleToObjectFunction<? extends V> function) -
Uses of DoublePredicate in org.eclipse.collections.impl.block.procedure.primitive
Methods in org.eclipse.collections.impl.block.procedure.primitive with parameters of type DoublePredicateModifier and TypeMethodDescriptionDoubleCaseProcedure.addCase
(DoublePredicate predicate, DoubleProcedure procedure) -
Uses of DoublePredicate in org.eclipse.collections.impl.collection.mutable.primitive
Methods in org.eclipse.collections.impl.collection.mutable.primitive with parameters of type DoublePredicateModifier and TypeMethodDescriptionboolean
AbstractSynchronizedDoubleCollection.allSatisfy
(DoublePredicate predicate) boolean
AbstractUnmodifiableDoubleCollection.allSatisfy
(DoublePredicate predicate) boolean
AbstractSynchronizedDoubleCollection.anySatisfy
(DoublePredicate predicate) boolean
AbstractUnmodifiableDoubleCollection.anySatisfy
(DoublePredicate predicate) int
AbstractSynchronizedDoubleCollection.count
(DoublePredicate predicate) int
AbstractUnmodifiableDoubleCollection.count
(DoublePredicate predicate) double
AbstractSynchronizedDoubleCollection.detectIfNone
(DoublePredicate predicate, double ifNone) double
AbstractUnmodifiableDoubleCollection.detectIfNone
(DoublePredicate predicate, double ifNone) boolean
AbstractSynchronizedDoubleCollection.noneSatisfy
(DoublePredicate predicate) boolean
AbstractUnmodifiableDoubleCollection.noneSatisfy
(DoublePredicate predicate) AbstractSynchronizedDoubleCollection.reject
(DoublePredicate predicate) AbstractUnmodifiableDoubleCollection.reject
(DoublePredicate predicate) boolean
AbstractSynchronizedDoubleCollection.removeIf
(DoublePredicate predicate) boolean
AbstractUnmodifiableDoubleCollection.removeIf
(DoublePredicate predicate) AbstractSynchronizedDoubleCollection.select
(DoublePredicate predicate) AbstractUnmodifiableDoubleCollection.select
(DoublePredicate predicate) -
Uses of DoublePredicate in org.eclipse.collections.impl.lazy.primitive
Methods in org.eclipse.collections.impl.lazy.primitive with parameters of type DoublePredicateModifier and TypeMethodDescriptionboolean
AbstractLazyDoubleIterable.allSatisfy
(DoublePredicate predicate) boolean
CollectDoubleIterable.allSatisfy
(DoublePredicate predicate) boolean
LazyDoubleIterableAdapter.allSatisfy
(DoublePredicate predicate) boolean
SelectDoubleIterable.allSatisfy
(DoublePredicate predicate) boolean
TapDoubleIterable.allSatisfy
(DoublePredicate predicate) boolean
AbstractLazyDoubleIterable.anySatisfy
(DoublePredicate predicate) boolean
CollectDoubleIterable.anySatisfy
(DoublePredicate predicate) boolean
LazyDoubleIterableAdapter.anySatisfy
(DoublePredicate predicate) boolean
SelectDoubleIterable.anySatisfy
(DoublePredicate predicate) boolean
TapDoubleIterable.anySatisfy
(DoublePredicate predicate) int
AbstractLazyDoubleIterable.count
(DoublePredicate predicate) int
CollectDoubleIterable.count
(DoublePredicate predicate) int
LazyDoubleIterableAdapter.count
(DoublePredicate predicate) int
SelectDoubleIterable.count
(DoublePredicate predicate) double
AbstractLazyDoubleIterable.detectIfNone
(DoublePredicate predicate, double ifNone) double
LazyDoubleIterableAdapter.detectIfNone
(DoublePredicate predicate, double ifNone) double
TapDoubleIterable.detectIfNone
(DoublePredicate predicate, double ifNone) boolean
AbstractLazyDoubleIterable.noneSatisfy
(DoublePredicate predicate) boolean
LazyDoubleIterableAdapter.noneSatisfy
(DoublePredicate predicate) boolean
TapDoubleIterable.noneSatisfy
(DoublePredicate predicate) AbstractLazyDoubleIterable.reject
(DoublePredicate predicate) AbstractLazyDoubleIterable.select
(DoublePredicate predicate) Constructors in org.eclipse.collections.impl.lazy.primitive with parameters of type DoublePredicateModifierConstructorDescriptionSelectDoubleIterable
(DoubleIterable delegate, DoublePredicate predicate) -
Uses of DoublePredicate in org.eclipse.collections.impl.list.mutable.primitive
Methods in org.eclipse.collections.impl.list.mutable.primitive with parameters of type DoublePredicateModifier and TypeMethodDescriptionboolean
DoubleArrayList.allSatisfy
(DoublePredicate predicate) boolean
DoubleArrayList.anySatisfy
(DoublePredicate predicate) int
DoubleArrayList.count
(DoublePredicate predicate) double
DoubleArrayList.detectIfNone
(DoublePredicate predicate, double ifNone) DoubleArrayList.reject
(DoublePredicate predicate) <R extends MutableDoubleCollection>
RDoubleArrayList.reject
(DoublePredicate predicate, R target) SynchronizedDoubleList.reject
(DoublePredicate predicate) UnmodifiableDoubleList.reject
(DoublePredicate predicate) boolean
DoubleArrayList.removeIf
(DoublePredicate predicate) DoubleArrayList.select
(DoublePredicate predicate) <R extends MutableDoubleCollection>
RDoubleArrayList.select
(DoublePredicate predicate, R target) SynchronizedDoubleList.select
(DoublePredicate predicate) UnmodifiableDoubleList.select
(DoublePredicate predicate) -
Uses of DoublePredicate in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type DoublePredicateModifier and TypeMethodDescriptionboolean
AbstractMutableDoubleKeySet.allSatisfy
(DoublePredicate predicate) boolean
AbstractMutableDoubleValuesMap.allSatisfy
(DoublePredicate predicate) boolean
ObjectDoubleHashMap.allSatisfy
(DoublePredicate predicate) boolean
ObjectDoubleHashMapWithHashingStrategy.allSatisfy
(DoublePredicate predicate) boolean
SynchronizedByteDoubleMap.allSatisfy
(DoublePredicate predicate) boolean
SynchronizedCharDoubleMap.allSatisfy
(DoublePredicate predicate) boolean
SynchronizedDoubleDoubleMap.allSatisfy
(DoublePredicate predicate) boolean
SynchronizedFloatDoubleMap.allSatisfy
(DoublePredicate predicate) boolean
SynchronizedIntDoubleMap.allSatisfy
(DoublePredicate predicate) boolean
SynchronizedLongDoubleMap.allSatisfy
(DoublePredicate predicate) boolean
SynchronizedObjectDoubleMap.allSatisfy
(DoublePredicate predicate) boolean
SynchronizedShortDoubleMap.allSatisfy
(DoublePredicate predicate) boolean
UnmodifiableByteDoubleMap.allSatisfy
(DoublePredicate predicate) boolean
UnmodifiableCharDoubleMap.allSatisfy
(DoublePredicate predicate) boolean
UnmodifiableDoubleDoubleMap.allSatisfy
(DoublePredicate predicate) boolean
UnmodifiableFloatDoubleMap.allSatisfy
(DoublePredicate predicate) boolean
UnmodifiableIntDoubleMap.allSatisfy
(DoublePredicate predicate) boolean
UnmodifiableLongDoubleMap.allSatisfy
(DoublePredicate predicate) boolean
UnmodifiableObjectDoubleMap.allSatisfy
(DoublePredicate predicate) boolean
UnmodifiableShortDoubleMap.allSatisfy
(DoublePredicate predicate) boolean
AbstractMutableDoubleKeySet.anySatisfy
(DoublePredicate predicate) boolean
AbstractMutableDoubleValuesMap.anySatisfy
(DoublePredicate predicate) boolean
ObjectDoubleHashMap.anySatisfy
(DoublePredicate predicate) boolean
ObjectDoubleHashMapWithHashingStrategy.anySatisfy
(DoublePredicate predicate) boolean
SynchronizedByteDoubleMap.anySatisfy
(DoublePredicate predicate) boolean
SynchronizedCharDoubleMap.anySatisfy
(DoublePredicate predicate) boolean
SynchronizedDoubleDoubleMap.anySatisfy
(DoublePredicate predicate) boolean
SynchronizedFloatDoubleMap.anySatisfy
(DoublePredicate predicate) boolean
SynchronizedIntDoubleMap.anySatisfy
(DoublePredicate predicate) boolean
SynchronizedLongDoubleMap.anySatisfy
(DoublePredicate predicate) boolean
SynchronizedObjectDoubleMap.anySatisfy
(DoublePredicate predicate) boolean
SynchronizedShortDoubleMap.anySatisfy
(DoublePredicate predicate) boolean
UnmodifiableByteDoubleMap.anySatisfy
(DoublePredicate predicate) boolean
UnmodifiableCharDoubleMap.anySatisfy
(DoublePredicate predicate) boolean
UnmodifiableDoubleDoubleMap.anySatisfy
(DoublePredicate predicate) boolean
UnmodifiableFloatDoubleMap.anySatisfy
(DoublePredicate predicate) boolean
UnmodifiableIntDoubleMap.anySatisfy
(DoublePredicate predicate) boolean
UnmodifiableLongDoubleMap.anySatisfy
(DoublePredicate predicate) boolean
UnmodifiableObjectDoubleMap.anySatisfy
(DoublePredicate predicate) boolean
UnmodifiableShortDoubleMap.anySatisfy
(DoublePredicate predicate) int
AbstractMutableDoubleKeySet.count
(DoublePredicate predicate) int
AbstractMutableDoubleValuesMap.count
(DoublePredicate predicate) int
ObjectDoubleHashMap.count
(DoublePredicate predicate) int
ObjectDoubleHashMapWithHashingStrategy.count
(DoublePredicate predicate) int
SynchronizedByteDoubleMap.count
(DoublePredicate predicate) int
SynchronizedCharDoubleMap.count
(DoublePredicate predicate) int
SynchronizedDoubleDoubleMap.count
(DoublePredicate predicate) int
SynchronizedFloatDoubleMap.count
(DoublePredicate predicate) int
SynchronizedIntDoubleMap.count
(DoublePredicate predicate) int
SynchronizedLongDoubleMap.count
(DoublePredicate predicate) int
SynchronizedObjectDoubleMap.count
(DoublePredicate predicate) int
SynchronizedShortDoubleMap.count
(DoublePredicate predicate) int
UnmodifiableByteDoubleMap.count
(DoublePredicate predicate) int
UnmodifiableCharDoubleMap.count
(DoublePredicate predicate) int
UnmodifiableDoubleDoubleMap.count
(DoublePredicate predicate) int
UnmodifiableFloatDoubleMap.count
(DoublePredicate predicate) int
UnmodifiableIntDoubleMap.count
(DoublePredicate predicate) int
UnmodifiableLongDoubleMap.count
(DoublePredicate predicate) int
UnmodifiableObjectDoubleMap.count
(DoublePredicate predicate) int
UnmodifiableShortDoubleMap.count
(DoublePredicate predicate) double
AbstractMutableDoubleKeySet.detectIfNone
(DoublePredicate predicate, double ifNone) double
AbstractMutableDoubleValuesMap.detectIfNone
(DoublePredicate predicate, double value) double
ObjectDoubleHashMap.detectIfNone
(DoublePredicate predicate, double ifNone) double
ObjectDoubleHashMapWithHashingStrategy.detectIfNone
(DoublePredicate predicate, double ifNone) double
SynchronizedByteDoubleMap.detectIfNone
(DoublePredicate predicate, double ifNone) double
SynchronizedCharDoubleMap.detectIfNone
(DoublePredicate predicate, double ifNone) double
SynchronizedDoubleDoubleMap.detectIfNone
(DoublePredicate predicate, double ifNone) double
SynchronizedFloatDoubleMap.detectIfNone
(DoublePredicate predicate, double ifNone) double
SynchronizedIntDoubleMap.detectIfNone
(DoublePredicate predicate, double ifNone) double
SynchronizedLongDoubleMap.detectIfNone
(DoublePredicate predicate, double ifNone) double
SynchronizedObjectDoubleMap.detectIfNone
(DoublePredicate predicate, double ifNone) double
SynchronizedShortDoubleMap.detectIfNone
(DoublePredicate predicate, double ifNone) double
UnmodifiableByteDoubleMap.detectIfNone
(DoublePredicate predicate, double ifNone) double
UnmodifiableCharDoubleMap.detectIfNone
(DoublePredicate predicate, double ifNone) double
UnmodifiableDoubleDoubleMap.detectIfNone
(DoublePredicate predicate, double ifNone) double
UnmodifiableFloatDoubleMap.detectIfNone
(DoublePredicate predicate, double ifNone) double
UnmodifiableIntDoubleMap.detectIfNone
(DoublePredicate predicate, double ifNone) double
UnmodifiableLongDoubleMap.detectIfNone
(DoublePredicate predicate, double ifNone) double
UnmodifiableObjectDoubleMap.detectIfNone
(DoublePredicate predicate, double ifNone) double
UnmodifiableShortDoubleMap.detectIfNone
(DoublePredicate predicate, double ifNone) boolean
ObjectDoubleHashMap.noneSatisfy
(DoublePredicate predicate) boolean
ObjectDoubleHashMapWithHashingStrategy.noneSatisfy
(DoublePredicate predicate) boolean
SynchronizedByteDoubleMap.noneSatisfy
(DoublePredicate predicate) boolean
SynchronizedCharDoubleMap.noneSatisfy
(DoublePredicate predicate) boolean
SynchronizedDoubleDoubleMap.noneSatisfy
(DoublePredicate predicate) boolean
SynchronizedFloatDoubleMap.noneSatisfy
(DoublePredicate predicate) boolean
SynchronizedIntDoubleMap.noneSatisfy
(DoublePredicate predicate) boolean
SynchronizedLongDoubleMap.noneSatisfy
(DoublePredicate predicate) boolean
SynchronizedObjectDoubleMap.noneSatisfy
(DoublePredicate predicate) boolean
SynchronizedShortDoubleMap.noneSatisfy
(DoublePredicate predicate) boolean
UnmodifiableByteDoubleMap.noneSatisfy
(DoublePredicate predicate) boolean
UnmodifiableCharDoubleMap.noneSatisfy
(DoublePredicate predicate) boolean
UnmodifiableDoubleDoubleMap.noneSatisfy
(DoublePredicate predicate) boolean
UnmodifiableFloatDoubleMap.noneSatisfy
(DoublePredicate predicate) boolean
UnmodifiableIntDoubleMap.noneSatisfy
(DoublePredicate predicate) boolean
UnmodifiableLongDoubleMap.noneSatisfy
(DoublePredicate predicate) boolean
UnmodifiableObjectDoubleMap.noneSatisfy
(DoublePredicate predicate) boolean
UnmodifiableShortDoubleMap.noneSatisfy
(DoublePredicate predicate) AbstractMutableDoubleKeySet.reject
(DoublePredicate predicate) AbstractMutableDoubleValuesMap.reject
(DoublePredicate predicate) ObjectDoubleHashMap.reject
(DoublePredicate predicate) ObjectDoubleHashMapWithHashingStrategy.reject
(DoublePredicate predicate) SynchronizedByteDoubleMap.reject
(DoublePredicate predicate) SynchronizedCharDoubleMap.reject
(DoublePredicate predicate) SynchronizedDoubleDoubleMap.reject
(DoublePredicate predicate) SynchronizedFloatDoubleMap.reject
(DoublePredicate predicate) SynchronizedIntDoubleMap.reject
(DoublePredicate predicate) SynchronizedLongDoubleMap.reject
(DoublePredicate predicate) SynchronizedObjectDoubleMap.reject
(DoublePredicate predicate) SynchronizedShortDoubleMap.reject
(DoublePredicate predicate) UnmodifiableByteDoubleMap.reject
(DoublePredicate predicate) UnmodifiableCharDoubleMap.reject
(DoublePredicate predicate) UnmodifiableDoubleDoubleMap.reject
(DoublePredicate predicate) UnmodifiableFloatDoubleMap.reject
(DoublePredicate predicate) UnmodifiableIntDoubleMap.reject
(DoublePredicate predicate) UnmodifiableLongDoubleMap.reject
(DoublePredicate predicate) UnmodifiableObjectDoubleMap.reject
(DoublePredicate predicate) UnmodifiableShortDoubleMap.reject
(DoublePredicate predicate) AbstractMutableDoubleKeySet.select
(DoublePredicate predicate) AbstractMutableDoubleValuesMap.select
(DoublePredicate predicate) ObjectDoubleHashMap.select
(DoublePredicate predicate) ObjectDoubleHashMapWithHashingStrategy.select
(DoublePredicate predicate) SynchronizedByteDoubleMap.select
(DoublePredicate predicate) SynchronizedCharDoubleMap.select
(DoublePredicate predicate) SynchronizedDoubleDoubleMap.select
(DoublePredicate predicate) SynchronizedFloatDoubleMap.select
(DoublePredicate predicate) SynchronizedIntDoubleMap.select
(DoublePredicate predicate) SynchronizedLongDoubleMap.select
(DoublePredicate predicate) SynchronizedObjectDoubleMap.select
(DoublePredicate predicate) SynchronizedShortDoubleMap.select
(DoublePredicate predicate) UnmodifiableByteDoubleMap.select
(DoublePredicate predicate) UnmodifiableCharDoubleMap.select
(DoublePredicate predicate) UnmodifiableDoubleDoubleMap.select
(DoublePredicate predicate) UnmodifiableFloatDoubleMap.select
(DoublePredicate predicate) UnmodifiableIntDoubleMap.select
(DoublePredicate predicate) UnmodifiableLongDoubleMap.select
(DoublePredicate predicate) UnmodifiableObjectDoubleMap.select
(DoublePredicate predicate) UnmodifiableShortDoubleMap.select
(DoublePredicate predicate) -
Uses of DoublePredicate in org.eclipse.collections.impl.primitive
Methods in org.eclipse.collections.impl.primitive with parameters of type DoublePredicateModifier and TypeMethodDescriptionboolean
SynchronizedDoubleIterable.allSatisfy
(DoublePredicate predicate) boolean
SynchronizedDoubleIterable.anySatisfy
(DoublePredicate predicate) int
SynchronizedDoubleIterable.count
(DoublePredicate predicate) double
SynchronizedDoubleIterable.detectIfNone
(DoublePredicate predicate, double ifNone) boolean
SynchronizedDoubleIterable.noneSatisfy
(DoublePredicate predicate) SynchronizedDoubleIterable.reject
(DoublePredicate predicate) SynchronizedDoubleIterable.select
(DoublePredicate predicate) -
Uses of DoublePredicate in org.eclipse.collections.impl.set.mutable.primitive
Methods in org.eclipse.collections.impl.set.mutable.primitive with parameters of type DoublePredicateModifier and TypeMethodDescriptionboolean
DoubleHashSet.allSatisfy
(DoublePredicate predicate) boolean
DoubleHashSet.anySatisfy
(DoublePredicate predicate) int
DoubleHashSet.count
(DoublePredicate predicate) double
DoubleHashSet.detectIfNone
(DoublePredicate predicate, double ifNone) DoubleHashSet.reject
(DoublePredicate predicate) <R extends MutableDoubleCollection>
RDoubleHashSet.reject
(DoublePredicate predicate, R target) SynchronizedDoubleSet.reject
(DoublePredicate predicate) UnmodifiableDoubleSet.reject
(DoublePredicate predicate) DoubleHashSet.select
(DoublePredicate predicate) <R extends MutableDoubleCollection>
RDoubleHashSet.select
(DoublePredicate predicate, R target) SynchronizedDoubleSet.select
(DoublePredicate predicate) UnmodifiableDoubleSet.select
(DoublePredicate predicate) -
Uses of DoublePredicate in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive with parameters of type DoublePredicateModifier and TypeMethodDescriptionboolean
SynchronizedDoubleStack.allSatisfy
(DoublePredicate predicate) boolean
UnmodifiableDoubleStack.allSatisfy
(DoublePredicate predicate) boolean
SynchronizedDoubleStack.anySatisfy
(DoublePredicate predicate) boolean
UnmodifiableDoubleStack.anySatisfy
(DoublePredicate predicate) int
SynchronizedDoubleStack.count
(DoublePredicate predicate) int
UnmodifiableDoubleStack.count
(DoublePredicate predicate) double
SynchronizedDoubleStack.detectIfNone
(DoublePredicate predicate, double ifNone) double
UnmodifiableDoubleStack.detectIfNone
(DoublePredicate predicate, double ifNone) boolean
SynchronizedDoubleStack.noneSatisfy
(DoublePredicate predicate) boolean
UnmodifiableDoubleStack.noneSatisfy
(DoublePredicate predicate) DoubleArrayStack.reject
(DoublePredicate predicate) SynchronizedDoubleStack.reject
(DoublePredicate predicate) UnmodifiableDoubleStack.reject
(DoublePredicate predicate) DoubleArrayStack.select
(DoublePredicate predicate) SynchronizedDoubleStack.select
(DoublePredicate predicate) UnmodifiableDoubleStack.select
(DoublePredicate predicate) -
Uses of DoublePredicate in org.eclipse.collections.impl.stack.primitive
Methods in org.eclipse.collections.impl.stack.primitive with parameters of type DoublePredicateModifier and TypeMethodDescriptionboolean
AbstractDoubleStack.allSatisfy
(DoublePredicate predicate) boolean
AbstractDoubleStack.anySatisfy
(DoublePredicate predicate) int
AbstractDoubleStack.count
(DoublePredicate predicate) double
AbstractDoubleStack.detectIfNone
(DoublePredicate predicate, double ifNone) boolean
AbstractDoubleStack.noneSatisfy
(DoublePredicate predicate) -
Uses of DoublePredicate in org.eclipse.collections.impl.utility.internal.primitive
Methods in org.eclipse.collections.impl.utility.internal.primitive with parameters of type DoublePredicateModifier and TypeMethodDescriptionstatic boolean
DoubleIterableIterate.allSatisfy
(DoubleIterable iterable, DoublePredicate predicate) static boolean
DoubleIteratorIterate.allSatisfy
(DoubleIterator iterator, DoublePredicate predicate) static boolean
DoubleIterableIterate.anySatisfy
(DoubleIterable iterable, DoublePredicate predicate) static boolean
DoubleIteratorIterate.anySatisfy
(DoubleIterator iterator, DoublePredicate predicate) static int
DoubleIterableIterate.count
(DoubleIterable iterable, DoublePredicate predicate) static int
DoubleIteratorIterate.count
(DoubleIterator iterator, DoublePredicate predicate) static double
DoubleIterableIterate.detectIfNone
(DoubleIterable iterable, DoublePredicate predicate, double ifNone) static double
DoubleIteratorIterate.detectIfNone
(DoubleIterator iterator, DoublePredicate predicate, double ifNone) static boolean
DoubleIterableIterate.noneSatisfy
(DoubleIterable iterable, DoublePredicate predicate) static boolean
DoubleIteratorIterate.noneSatisfy
(DoubleIterator iterator, DoublePredicate predicate) static <R extends MutableDoubleCollection>
RDoubleIterableIterate.reject
(DoubleIterable iterable, DoublePredicate predicate, R targetCollection) static <R extends MutableDoubleCollection>
RDoubleIteratorIterate.reject
(DoubleIterator iterator, DoublePredicate predicate, R targetCollection) static <R extends MutableDoubleCollection>
RDoubleIterableIterate.select
(DoubleIterable iterable, DoublePredicate predicate, R targetCollection) static <R extends MutableDoubleCollection>
RDoubleIteratorIterate.select
(DoubleIterator iterator, DoublePredicate predicate, R targetCollection) -
Uses of DoublePredicate in org.eclipse.collections.impl.utility.primitive
Methods in org.eclipse.collections.impl.utility.primitive with parameters of type DoublePredicateModifier and TypeMethodDescriptionstatic <V> LazyIterable<V>
LazyDoubleIterate.collectIf
(DoubleIterable iterable, DoublePredicate predicate, DoubleToObjectFunction<? extends V> function) Creates a deferred filtering and transforming double iterable for the specified double iterable.static LazyDoubleIterable
LazyDoubleIterate.select
(DoubleIterable iterable, DoublePredicate predicate) Creates a deferred filtering double iterable for the specified double iterable.