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 immutable primitive bag interfaces.
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 immutable primitive list interfaces and immutable primitive list factory interfaces.
This package contains implementations of the mutable primitive list interfaces.
This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the immutable primitive set interfaces.
This package contains implementations of the mutable primitive set interfaces.
This package contains implementations of the immutable primitive stack 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 TypeMethodDescriptionbooleanDoubleIterable.allSatisfy(DoublePredicate predicate) Returns true if all of the elements in the DoubleIterable return true for the specified predicate, otherwise returns false.booleanDoubleIterable.anySatisfy(DoublePredicate predicate) Returns true if any of the elements in the DoubleIterable return true for the specified predicate, otherwise returns false.intDoubleIterable.count(DoublePredicate predicate) Returns a count of the number of elements in the DoubleIterable that return true for the specified predicate.doubleDoubleIterable.detectIfNone(DoublePredicate predicate, double ifNone) default booleanDoubleIterable.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 booleanMutableDoubleCollection.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.immutable.primitive
Methods in org.eclipse.collections.impl.bag.immutable.primitive with parameters of type DoublePredicateModifier and TypeMethodDescriptionbooleanImmutableDoubleEmptyBag.allSatisfy(DoublePredicate predicate) booleanImmutableDoubleHashBag.allSatisfy(DoublePredicate predicate) booleanImmutableDoubleSingletonBag.allSatisfy(DoublePredicate predicate) booleanImmutableDoubleEmptyBag.anySatisfy(DoublePredicate predicate) booleanImmutableDoubleHashBag.anySatisfy(DoublePredicate predicate) booleanImmutableDoubleSingletonBag.anySatisfy(DoublePredicate predicate) intImmutableDoubleEmptyBag.count(DoublePredicate predicate) intImmutableDoubleHashBag.count(DoublePredicate predicate) intImmutableDoubleSingletonBag.count(DoublePredicate predicate) doubleImmutableDoubleEmptyBag.detectIfNone(DoublePredicate predicate, double ifNone) doubleImmutableDoubleHashBag.detectIfNone(DoublePredicate predicate, double ifNone) doubleImmutableDoubleSingletonBag.detectIfNone(DoublePredicate predicate, double ifNone) booleanImmutableDoubleEmptyBag.noneSatisfy(DoublePredicate predicate) booleanImmutableDoubleHashBag.noneSatisfy(DoublePredicate predicate) booleanImmutableDoubleSingletonBag.noneSatisfy(DoublePredicate predicate) ImmutableDoubleEmptyBag.reject(DoublePredicate predicate) ImmutableDoubleHashBag.reject(DoublePredicate predicate) ImmutableDoubleSingletonBag.reject(DoublePredicate predicate) ImmutableDoubleEmptyBag.select(DoublePredicate predicate) ImmutableDoubleHashBag.select(DoublePredicate predicate) ImmutableDoubleSingletonBag.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 TypeMethodDescriptionbooleanDoubleHashBag.allSatisfy(DoublePredicate predicate) booleanDoubleHashBag.anySatisfy(DoublePredicate predicate) intDoubleHashBag.count(DoublePredicate predicate) doubleDoubleHashBag.detectIfNone(DoublePredicate predicate, double ifNone) booleanDoubleHashBag.noneSatisfy(DoublePredicate predicate) DoubleHashBag.reject(DoublePredicate predicate) SynchronizedDoubleBag.reject(DoublePredicate predicate) UnmodifiableDoubleBag.reject(DoublePredicate predicate) booleanDoubleHashBag.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
Classes in org.eclipse.collections.impl.block.factory.primitive that implement DoublePredicateModifier and TypeClassDescriptionprivate static final classprivate static final classprivate static final classprivate static final classprivate static final classprivate static final classprivate static final classprivate static final classprivate static final classFields in org.eclipse.collections.impl.block.factory.primitive declared as DoublePredicateModifier and TypeFieldDescriptionprivate static final DoublePredicateDoublePredicates.ALWAYS_FALSEprivate static final DoublePredicateDoublePredicates.ALWAYS_TRUEprivate final DoublePredicateDoublePredicates.NotDoublePredicate.negateprivate final DoublePredicateDoublePredicates.AndDoublePredicate.oneprivate final DoublePredicateDoublePredicates.OrDoublePredicate.oneprivate final DoublePredicateDoublePredicates.AndDoublePredicate.twoprivate final DoublePredicateDoublePredicates.OrDoublePredicate.twoMethods in org.eclipse.collections.impl.block.factory.primitive that return DoublePredicateModifier and TypeMethodDescriptionstatic DoublePredicateDoublePredicates.alwaysFalse()static DoublePredicateDoublePredicates.alwaysTrue()static DoublePredicateDoublePredicates.and(DoublePredicate one, DoublePredicate two) static DoublePredicateDoublePredicates.equal(double expected) static DoublePredicateDoublePredicates.equal(double expected, double delta) static DoublePredicateDoublePredicates.greaterThan(double expected) static DoublePredicateDoublePredicates.lessThan(double expected) static DoublePredicateDoublePredicates.not(DoublePredicate negate) static DoublePredicateDoublePredicates.or(DoublePredicate one, DoublePredicate two) Methods in org.eclipse.collections.impl.block.factory.primitive with parameters of type DoublePredicateModifier and TypeMethodDescriptionstatic DoublePredicateDoublePredicates.and(DoublePredicate one, DoublePredicate two) static DoublePredicateDoublePredicates.not(DoublePredicate negate) static DoublePredicateDoublePredicates.or(DoublePredicate one, DoublePredicate two) Constructors in org.eclipse.collections.impl.block.factory.primitive with parameters of type DoublePredicateModifierConstructorDescriptionprivateAndDoublePredicate(DoublePredicate one, DoublePredicate two) privateNotDoublePredicate(DoublePredicate negate) privateOrDoublePredicate(DoublePredicate one, DoublePredicate two) -
Uses of DoublePredicate in org.eclipse.collections.impl.block.function.primitive
Fields in org.eclipse.collections.impl.block.function.primitive with type parameters of type DoublePredicateModifier and TypeFieldDescriptionprivate final MutableList<Pair<DoublePredicate, DoubleToObjectFunction<? extends V>>> DoubleCaseFunction.predicateFunctionsMethods 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
Fields in org.eclipse.collections.impl.block.procedure.primitive with type parameters of type DoublePredicateModifier and TypeFieldDescriptionprivate final MutableList<Pair<DoublePredicate, DoubleProcedure>> DoubleCaseProcedure.predicateProceduresMethods 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 TypeMethodDescriptionbooleanAbstractSynchronizedDoubleCollection.allSatisfy(DoublePredicate predicate) booleanAbstractUnmodifiableDoubleCollection.allSatisfy(DoublePredicate predicate) booleanAbstractSynchronizedDoubleCollection.anySatisfy(DoublePredicate predicate) booleanAbstractUnmodifiableDoubleCollection.anySatisfy(DoublePredicate predicate) intAbstractSynchronizedDoubleCollection.count(DoublePredicate predicate) intAbstractUnmodifiableDoubleCollection.count(DoublePredicate predicate) doubleAbstractSynchronizedDoubleCollection.detectIfNone(DoublePredicate predicate, double ifNone) doubleAbstractUnmodifiableDoubleCollection.detectIfNone(DoublePredicate predicate, double ifNone) booleanAbstractSynchronizedDoubleCollection.noneSatisfy(DoublePredicate predicate) booleanAbstractUnmodifiableDoubleCollection.noneSatisfy(DoublePredicate predicate) AbstractSynchronizedDoubleCollection.reject(DoublePredicate predicate) AbstractUnmodifiableDoubleCollection.reject(DoublePredicate predicate) booleanAbstractSynchronizedDoubleCollection.removeIf(DoublePredicate predicate) booleanAbstractUnmodifiableDoubleCollection.removeIf(DoublePredicate predicate) AbstractSynchronizedDoubleCollection.select(DoublePredicate predicate) AbstractUnmodifiableDoubleCollection.select(DoublePredicate predicate) -
Uses of DoublePredicate in org.eclipse.collections.impl.lazy.primitive
Fields in org.eclipse.collections.impl.lazy.primitive declared as DoublePredicateModifier and TypeFieldDescriptionprivate final DoublePredicateSelectDoubleIterable.CountDoubleProcedure.predicateprivate final DoublePredicateSelectDoubleIterable.predicateprivate final DoublePredicateSelectDoubleIterable.SelectDoubleIterator.predicateMethods in org.eclipse.collections.impl.lazy.primitive with parameters of type DoublePredicateModifier and TypeMethodDescriptionbooleanAbstractLazyDoubleIterable.allSatisfy(DoublePredicate predicate) booleanCollectDoubleIterable.allSatisfy(DoublePredicate predicate) booleanLazyDoubleIterableAdapter.allSatisfy(DoublePredicate predicate) booleanSelectDoubleIterable.allSatisfy(DoublePredicate predicate) booleanTapDoubleIterable.allSatisfy(DoublePredicate predicate) booleanAbstractLazyDoubleIterable.anySatisfy(DoublePredicate predicate) booleanCollectDoubleIterable.anySatisfy(DoublePredicate predicate) booleanLazyDoubleIterableAdapter.anySatisfy(DoublePredicate predicate) booleanSelectDoubleIterable.anySatisfy(DoublePredicate predicate) booleanTapDoubleIterable.anySatisfy(DoublePredicate predicate) intAbstractLazyDoubleIterable.count(DoublePredicate predicate) intCollectDoubleIterable.count(DoublePredicate predicate) intLazyDoubleIterableAdapter.count(DoublePredicate predicate) intSelectDoubleIterable.count(DoublePredicate predicate) doubleAbstractLazyDoubleIterable.detectIfNone(DoublePredicate predicate, double ifNone) doubleLazyDoubleIterableAdapter.detectIfNone(DoublePredicate predicate, double ifNone) doubleTapDoubleIterable.detectIfNone(DoublePredicate predicate, double ifNone) booleanAbstractLazyDoubleIterable.noneSatisfy(DoublePredicate predicate) booleanLazyDoubleIterableAdapter.noneSatisfy(DoublePredicate predicate) booleanTapDoubleIterable.noneSatisfy(DoublePredicate predicate) AbstractLazyDoubleIterable.reject(DoublePredicate predicate) AbstractLazyDoubleIterable.select(DoublePredicate predicate) Constructors in org.eclipse.collections.impl.lazy.primitive with parameters of type DoublePredicateModifierConstructorDescriptionprivateCountDoubleProcedure(DoublePredicate predicate) SelectDoubleIterable(DoubleIterable delegate, DoublePredicate predicate) privateSelectDoubleIterator(DoubleIterable iterable, DoublePredicate predicate) privateSelectDoubleIterator(DoubleIterator iterator, DoublePredicate predicate) -
Uses of DoublePredicate in org.eclipse.collections.impl.list.immutable.primitive
Methods in org.eclipse.collections.impl.list.immutable.primitive with parameters of type DoublePredicateModifier and TypeMethodDescriptionbooleanImmutableDoubleArrayList.allSatisfy(DoublePredicate predicate) booleanImmutableDoubleEmptyList.allSatisfy(DoublePredicate predicate) booleanImmutableDoubleSingletonList.allSatisfy(DoublePredicate predicate) booleanImmutableDoubleArrayList.anySatisfy(DoublePredicate predicate) booleanImmutableDoubleEmptyList.anySatisfy(DoublePredicate predicate) booleanImmutableDoubleSingletonList.anySatisfy(DoublePredicate predicate) intImmutableDoubleArrayList.count(DoublePredicate predicate) intImmutableDoubleEmptyList.count(DoublePredicate predicate) intImmutableDoubleSingletonList.count(DoublePredicate predicate) doubleImmutableDoubleArrayList.detectIfNone(DoublePredicate predicate, double ifNone) doubleImmutableDoubleEmptyList.detectIfNone(DoublePredicate predicate, double ifNone) doubleImmutableDoubleSingletonList.detectIfNone(DoublePredicate predicate, double ifNone) booleanImmutableDoubleEmptyList.noneSatisfy(DoublePredicate predicate) booleanImmutableDoubleSingletonList.noneSatisfy(DoublePredicate predicate) ImmutableDoubleArrayList.reject(DoublePredicate predicate) <R extends MutableDoubleCollection>
RImmutableDoubleArrayList.reject(DoublePredicate predicate, R target) ImmutableDoubleEmptyList.reject(DoublePredicate predicate) ImmutableDoubleSingletonList.reject(DoublePredicate predicate) ImmutableDoubleArrayList.select(DoublePredicate predicate) <R extends MutableDoubleCollection>
RImmutableDoubleArrayList.select(DoublePredicate predicate, R target) ImmutableDoubleEmptyList.select(DoublePredicate predicate) ImmutableDoubleSingletonList.select(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 TypeMethodDescriptionbooleanDoubleArrayList.allSatisfy(DoublePredicate predicate) booleanDoubleArrayList.anySatisfy(DoublePredicate predicate) intDoubleArrayList.count(DoublePredicate predicate) doubleDoubleArrayList.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) booleanDoubleArrayList.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.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive with parameters of type DoublePredicateModifier and TypeMethodDescriptionbooleanImmutableByteDoubleEmptyMap.allSatisfy(DoublePredicate predicate) booleanImmutableByteDoubleHashMap.allSatisfy(DoublePredicate predicate) booleanImmutableByteDoubleSingletonMap.allSatisfy(DoublePredicate predicate) booleanImmutableCharDoubleEmptyMap.allSatisfy(DoublePredicate predicate) booleanImmutableCharDoubleHashMap.allSatisfy(DoublePredicate predicate) booleanImmutableCharDoubleSingletonMap.allSatisfy(DoublePredicate predicate) booleanImmutableDoubleDoubleEmptyMap.allSatisfy(DoublePredicate predicate) booleanImmutableDoubleDoubleHashMap.allSatisfy(DoublePredicate predicate) booleanImmutableDoubleDoubleSingletonMap.allSatisfy(DoublePredicate predicate) booleanImmutableFloatDoubleEmptyMap.allSatisfy(DoublePredicate predicate) booleanImmutableFloatDoubleHashMap.allSatisfy(DoublePredicate predicate) booleanImmutableFloatDoubleSingletonMap.allSatisfy(DoublePredicate predicate) booleanImmutableIntDoubleEmptyMap.allSatisfy(DoublePredicate predicate) booleanImmutableIntDoubleHashMap.allSatisfy(DoublePredicate predicate) booleanImmutableIntDoubleSingletonMap.allSatisfy(DoublePredicate predicate) booleanImmutableLongDoubleEmptyMap.allSatisfy(DoublePredicate predicate) booleanImmutableLongDoubleHashMap.allSatisfy(DoublePredicate predicate) booleanImmutableLongDoubleSingletonMap.allSatisfy(DoublePredicate predicate) booleanImmutableObjectDoubleEmptyMap.allSatisfy(DoublePredicate predicate) booleanImmutableObjectDoubleHashMap.allSatisfy(DoublePredicate predicate) booleanImmutableObjectDoubleSingletonMap.allSatisfy(DoublePredicate predicate) booleanImmutableShortDoubleEmptyMap.allSatisfy(DoublePredicate predicate) booleanImmutableShortDoubleHashMap.allSatisfy(DoublePredicate predicate) booleanImmutableShortDoubleSingletonMap.allSatisfy(DoublePredicate predicate) booleanImmutableByteDoubleEmptyMap.anySatisfy(DoublePredicate predicate) booleanImmutableByteDoubleHashMap.anySatisfy(DoublePredicate predicate) booleanImmutableByteDoubleSingletonMap.anySatisfy(DoublePredicate predicate) booleanImmutableCharDoubleEmptyMap.anySatisfy(DoublePredicate predicate) booleanImmutableCharDoubleHashMap.anySatisfy(DoublePredicate predicate) booleanImmutableCharDoubleSingletonMap.anySatisfy(DoublePredicate predicate) booleanImmutableDoubleDoubleEmptyMap.anySatisfy(DoublePredicate predicate) booleanImmutableDoubleDoubleHashMap.anySatisfy(DoublePredicate predicate) booleanImmutableDoubleDoubleSingletonMap.anySatisfy(DoublePredicate predicate) booleanImmutableFloatDoubleEmptyMap.anySatisfy(DoublePredicate predicate) booleanImmutableFloatDoubleHashMap.anySatisfy(DoublePredicate predicate) booleanImmutableFloatDoubleSingletonMap.anySatisfy(DoublePredicate predicate) booleanImmutableIntDoubleEmptyMap.anySatisfy(DoublePredicate predicate) booleanImmutableIntDoubleHashMap.anySatisfy(DoublePredicate predicate) booleanImmutableIntDoubleSingletonMap.anySatisfy(DoublePredicate predicate) booleanImmutableLongDoubleEmptyMap.anySatisfy(DoublePredicate predicate) booleanImmutableLongDoubleHashMap.anySatisfy(DoublePredicate predicate) booleanImmutableLongDoubleSingletonMap.anySatisfy(DoublePredicate predicate) booleanImmutableObjectDoubleEmptyMap.anySatisfy(DoublePredicate predicate) booleanImmutableObjectDoubleHashMap.anySatisfy(DoublePredicate predicate) booleanImmutableObjectDoubleSingletonMap.anySatisfy(DoublePredicate predicate) booleanImmutableShortDoubleEmptyMap.anySatisfy(DoublePredicate predicate) booleanImmutableShortDoubleHashMap.anySatisfy(DoublePredicate predicate) booleanImmutableShortDoubleSingletonMap.anySatisfy(DoublePredicate predicate) intImmutableByteDoubleEmptyMap.count(DoublePredicate predicate) intImmutableByteDoubleHashMap.count(DoublePredicate predicate) intImmutableByteDoubleSingletonMap.count(DoublePredicate predicate) intImmutableCharDoubleEmptyMap.count(DoublePredicate predicate) intImmutableCharDoubleHashMap.count(DoublePredicate predicate) intImmutableCharDoubleSingletonMap.count(DoublePredicate predicate) intImmutableDoubleDoubleEmptyMap.count(DoublePredicate predicate) intImmutableDoubleDoubleHashMap.count(DoublePredicate predicate) intImmutableDoubleDoubleSingletonMap.count(DoublePredicate predicate) intImmutableFloatDoubleEmptyMap.count(DoublePredicate predicate) intImmutableFloatDoubleHashMap.count(DoublePredicate predicate) intImmutableFloatDoubleSingletonMap.count(DoublePredicate predicate) intImmutableIntDoubleEmptyMap.count(DoublePredicate predicate) intImmutableIntDoubleHashMap.count(DoublePredicate predicate) intImmutableIntDoubleSingletonMap.count(DoublePredicate predicate) intImmutableLongDoubleEmptyMap.count(DoublePredicate predicate) intImmutableLongDoubleHashMap.count(DoublePredicate predicate) intImmutableLongDoubleSingletonMap.count(DoublePredicate predicate) intImmutableObjectDoubleEmptyMap.count(DoublePredicate predicate) intImmutableObjectDoubleHashMap.count(DoublePredicate predicate) intImmutableObjectDoubleSingletonMap.count(DoublePredicate predicate) intImmutableShortDoubleEmptyMap.count(DoublePredicate predicate) intImmutableShortDoubleHashMap.count(DoublePredicate predicate) intImmutableShortDoubleSingletonMap.count(DoublePredicate predicate) doubleImmutableByteDoubleEmptyMap.detectIfNone(DoublePredicate predicate, double ifNone) doubleImmutableByteDoubleHashMap.detectIfNone(DoublePredicate predicate, double ifNone) doubleImmutableByteDoubleSingletonMap.detectIfNone(DoublePredicate predicate, double ifNone) doubleImmutableCharDoubleEmptyMap.detectIfNone(DoublePredicate predicate, double ifNone) doubleImmutableCharDoubleHashMap.detectIfNone(DoublePredicate predicate, double ifNone) doubleImmutableCharDoubleSingletonMap.detectIfNone(DoublePredicate predicate, double ifNone) doubleImmutableDoubleDoubleEmptyMap.detectIfNone(DoublePredicate predicate, double ifNone) doubleImmutableDoubleDoubleHashMap.detectIfNone(DoublePredicate predicate, double ifNone) doubleImmutableDoubleDoubleSingletonMap.detectIfNone(DoublePredicate predicate, double ifNone) doubleImmutableFloatDoubleEmptyMap.detectIfNone(DoublePredicate predicate, double ifNone) doubleImmutableFloatDoubleHashMap.detectIfNone(DoublePredicate predicate, double ifNone) doubleImmutableFloatDoubleSingletonMap.detectIfNone(DoublePredicate predicate, double ifNone) doubleImmutableIntDoubleEmptyMap.detectIfNone(DoublePredicate predicate, double ifNone) doubleImmutableIntDoubleHashMap.detectIfNone(DoublePredicate predicate, double ifNone) doubleImmutableIntDoubleSingletonMap.detectIfNone(DoublePredicate predicate, double ifNone) doubleImmutableLongDoubleEmptyMap.detectIfNone(DoublePredicate predicate, double ifNone) doubleImmutableLongDoubleHashMap.detectIfNone(DoublePredicate predicate, double ifNone) doubleImmutableLongDoubleSingletonMap.detectIfNone(DoublePredicate predicate, double ifNone) doubleImmutableObjectDoubleEmptyMap.detectIfNone(DoublePredicate predicate, double ifNone) doubleImmutableObjectDoubleHashMap.detectIfNone(DoublePredicate predicate, double ifNone) doubleImmutableObjectDoubleSingletonMap.detectIfNone(DoublePredicate predicate, double ifNone) doubleImmutableShortDoubleEmptyMap.detectIfNone(DoublePredicate predicate, double ifNone) doubleImmutableShortDoubleHashMap.detectIfNone(DoublePredicate predicate, double ifNone) doubleImmutableShortDoubleSingletonMap.detectIfNone(DoublePredicate predicate, double ifNone) booleanImmutableByteDoubleEmptyMap.noneSatisfy(DoublePredicate predicate) booleanImmutableByteDoubleHashMap.noneSatisfy(DoublePredicate predicate) booleanImmutableByteDoubleSingletonMap.noneSatisfy(DoublePredicate predicate) booleanImmutableCharDoubleEmptyMap.noneSatisfy(DoublePredicate predicate) booleanImmutableCharDoubleHashMap.noneSatisfy(DoublePredicate predicate) booleanImmutableCharDoubleSingletonMap.noneSatisfy(DoublePredicate predicate) booleanImmutableDoubleDoubleEmptyMap.noneSatisfy(DoublePredicate predicate) booleanImmutableDoubleDoubleHashMap.noneSatisfy(DoublePredicate predicate) booleanImmutableDoubleDoubleSingletonMap.noneSatisfy(DoublePredicate predicate) booleanImmutableFloatDoubleEmptyMap.noneSatisfy(DoublePredicate predicate) booleanImmutableFloatDoubleHashMap.noneSatisfy(DoublePredicate predicate) booleanImmutableFloatDoubleSingletonMap.noneSatisfy(DoublePredicate predicate) booleanImmutableIntDoubleEmptyMap.noneSatisfy(DoublePredicate predicate) booleanImmutableIntDoubleHashMap.noneSatisfy(DoublePredicate predicate) booleanImmutableIntDoubleSingletonMap.noneSatisfy(DoublePredicate predicate) booleanImmutableLongDoubleEmptyMap.noneSatisfy(DoublePredicate predicate) booleanImmutableLongDoubleHashMap.noneSatisfy(DoublePredicate predicate) booleanImmutableLongDoubleSingletonMap.noneSatisfy(DoublePredicate predicate) booleanImmutableObjectDoubleEmptyMap.noneSatisfy(DoublePredicate predicate) booleanImmutableObjectDoubleHashMap.noneSatisfy(DoublePredicate predicate) booleanImmutableObjectDoubleSingletonMap.noneSatisfy(DoublePredicate predicate) booleanImmutableShortDoubleEmptyMap.noneSatisfy(DoublePredicate predicate) booleanImmutableShortDoubleHashMap.noneSatisfy(DoublePredicate predicate) booleanImmutableShortDoubleSingletonMap.noneSatisfy(DoublePredicate predicate) ImmutableByteDoubleEmptyMap.reject(DoublePredicate predicate) ImmutableByteDoubleHashMap.reject(DoublePredicate predicate) ImmutableByteDoubleSingletonMap.reject(DoublePredicate predicate) ImmutableCharDoubleEmptyMap.reject(DoublePredicate predicate) ImmutableCharDoubleHashMap.reject(DoublePredicate predicate) ImmutableCharDoubleSingletonMap.reject(DoublePredicate predicate) ImmutableDoubleDoubleEmptyMap.reject(DoublePredicate predicate) ImmutableDoubleDoubleHashMap.reject(DoublePredicate predicate) ImmutableDoubleDoubleSingletonMap.reject(DoublePredicate predicate) ImmutableFloatDoubleEmptyMap.reject(DoublePredicate predicate) ImmutableFloatDoubleHashMap.reject(DoublePredicate predicate) ImmutableFloatDoubleSingletonMap.reject(DoublePredicate predicate) ImmutableIntDoubleEmptyMap.reject(DoublePredicate predicate) ImmutableIntDoubleHashMap.reject(DoublePredicate predicate) ImmutableIntDoubleSingletonMap.reject(DoublePredicate predicate) ImmutableLongDoubleEmptyMap.reject(DoublePredicate predicate) ImmutableLongDoubleHashMap.reject(DoublePredicate predicate) ImmutableLongDoubleSingletonMap.reject(DoublePredicate predicate) ImmutableObjectDoubleEmptyMap.reject(DoublePredicate predicate) ImmutableObjectDoubleHashMap.reject(DoublePredicate predicate) ImmutableObjectDoubleSingletonMap.reject(DoublePredicate predicate) ImmutableShortDoubleEmptyMap.reject(DoublePredicate predicate) ImmutableShortDoubleHashMap.reject(DoublePredicate predicate) ImmutableShortDoubleSingletonMap.reject(DoublePredicate predicate) ImmutableByteDoubleEmptyMap.select(DoublePredicate predicate) ImmutableByteDoubleHashMap.select(DoublePredicate predicate) ImmutableByteDoubleSingletonMap.select(DoublePredicate predicate) ImmutableCharDoubleEmptyMap.select(DoublePredicate predicate) ImmutableCharDoubleHashMap.select(DoublePredicate predicate) ImmutableCharDoubleSingletonMap.select(DoublePredicate predicate) ImmutableDoubleDoubleEmptyMap.select(DoublePredicate predicate) ImmutableDoubleDoubleHashMap.select(DoublePredicate predicate) ImmutableDoubleDoubleSingletonMap.select(DoublePredicate predicate) ImmutableFloatDoubleEmptyMap.select(DoublePredicate predicate) ImmutableFloatDoubleHashMap.select(DoublePredicate predicate) ImmutableFloatDoubleSingletonMap.select(DoublePredicate predicate) ImmutableIntDoubleEmptyMap.select(DoublePredicate predicate) ImmutableIntDoubleHashMap.select(DoublePredicate predicate) ImmutableIntDoubleSingletonMap.select(DoublePredicate predicate) ImmutableLongDoubleEmptyMap.select(DoublePredicate predicate) ImmutableLongDoubleHashMap.select(DoublePredicate predicate) ImmutableLongDoubleSingletonMap.select(DoublePredicate predicate) ImmutableObjectDoubleEmptyMap.select(DoublePredicate predicate) ImmutableObjectDoubleHashMap.select(DoublePredicate predicate) ImmutableObjectDoubleSingletonMap.select(DoublePredicate predicate) ImmutableShortDoubleEmptyMap.select(DoublePredicate predicate) ImmutableShortDoubleHashMap.select(DoublePredicate predicate) ImmutableShortDoubleSingletonMap.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 TypeMethodDescriptionbooleanAbstractMutableDoubleKeySet.allSatisfy(DoublePredicate predicate) booleanAbstractMutableDoubleValuesMap.AbstractDoubleValuesCollection.allSatisfy(DoublePredicate predicate) booleanAbstractMutableDoubleValuesMap.allSatisfy(DoublePredicate predicate) booleanDoubleBooleanHashMap.KeysView.allSatisfy(DoublePredicate predicate) booleanImmutableDoubleDoubleMapKeySet.allSatisfy(DoublePredicate predicate) booleanImmutableDoubleMapKeySet.allSatisfy(DoublePredicate predicate) booleanObjectDoubleHashMap.allSatisfy(DoublePredicate predicate) booleanObjectDoubleHashMap.ValuesCollection.allSatisfy(DoublePredicate predicate) booleanObjectDoubleHashMapWithHashingStrategy.allSatisfy(DoublePredicate predicate) booleanObjectDoubleHashMapWithHashingStrategy.ValuesCollection.allSatisfy(DoublePredicate predicate) booleanSynchronizedByteDoubleMap.allSatisfy(DoublePredicate predicate) booleanSynchronizedCharDoubleMap.allSatisfy(DoublePredicate predicate) booleanSynchronizedDoubleDoubleMap.allSatisfy(DoublePredicate predicate) booleanSynchronizedFloatDoubleMap.allSatisfy(DoublePredicate predicate) booleanSynchronizedIntDoubleMap.allSatisfy(DoublePredicate predicate) booleanSynchronizedLongDoubleMap.allSatisfy(DoublePredicate predicate) booleanSynchronizedObjectDoubleMap.allSatisfy(DoublePredicate predicate) booleanSynchronizedShortDoubleMap.allSatisfy(DoublePredicate predicate) booleanUnmodifiableByteDoubleMap.allSatisfy(DoublePredicate predicate) booleanUnmodifiableCharDoubleMap.allSatisfy(DoublePredicate predicate) booleanUnmodifiableDoubleDoubleMap.allSatisfy(DoublePredicate predicate) booleanUnmodifiableFloatDoubleMap.allSatisfy(DoublePredicate predicate) booleanUnmodifiableIntDoubleMap.allSatisfy(DoublePredicate predicate) booleanUnmodifiableLongDoubleMap.allSatisfy(DoublePredicate predicate) booleanUnmodifiableObjectDoubleMap.allSatisfy(DoublePredicate predicate) booleanUnmodifiableShortDoubleMap.allSatisfy(DoublePredicate predicate) booleanAbstractMutableDoubleKeySet.anySatisfy(DoublePredicate predicate) booleanAbstractMutableDoubleValuesMap.AbstractDoubleValuesCollection.anySatisfy(DoublePredicate predicate) booleanAbstractMutableDoubleValuesMap.anySatisfy(DoublePredicate predicate) booleanDoubleBooleanHashMap.KeysView.anySatisfy(DoublePredicate predicate) booleanImmutableDoubleDoubleMapKeySet.anySatisfy(DoublePredicate predicate) booleanImmutableDoubleMapKeySet.anySatisfy(DoublePredicate predicate) booleanObjectDoubleHashMap.anySatisfy(DoublePredicate predicate) booleanObjectDoubleHashMap.ValuesCollection.anySatisfy(DoublePredicate predicate) booleanObjectDoubleHashMapWithHashingStrategy.anySatisfy(DoublePredicate predicate) booleanObjectDoubleHashMapWithHashingStrategy.ValuesCollection.anySatisfy(DoublePredicate predicate) booleanSynchronizedByteDoubleMap.anySatisfy(DoublePredicate predicate) booleanSynchronizedCharDoubleMap.anySatisfy(DoublePredicate predicate) booleanSynchronizedDoubleDoubleMap.anySatisfy(DoublePredicate predicate) booleanSynchronizedFloatDoubleMap.anySatisfy(DoublePredicate predicate) booleanSynchronizedIntDoubleMap.anySatisfy(DoublePredicate predicate) booleanSynchronizedLongDoubleMap.anySatisfy(DoublePredicate predicate) booleanSynchronizedObjectDoubleMap.anySatisfy(DoublePredicate predicate) booleanSynchronizedShortDoubleMap.anySatisfy(DoublePredicate predicate) booleanUnmodifiableByteDoubleMap.anySatisfy(DoublePredicate predicate) booleanUnmodifiableCharDoubleMap.anySatisfy(DoublePredicate predicate) booleanUnmodifiableDoubleDoubleMap.anySatisfy(DoublePredicate predicate) booleanUnmodifiableFloatDoubleMap.anySatisfy(DoublePredicate predicate) booleanUnmodifiableIntDoubleMap.anySatisfy(DoublePredicate predicate) booleanUnmodifiableLongDoubleMap.anySatisfy(DoublePredicate predicate) booleanUnmodifiableObjectDoubleMap.anySatisfy(DoublePredicate predicate) booleanUnmodifiableShortDoubleMap.anySatisfy(DoublePredicate predicate) intAbstractMutableDoubleKeySet.count(DoublePredicate predicate) intAbstractMutableDoubleValuesMap.AbstractDoubleValuesCollection.count(DoublePredicate predicate) intAbstractMutableDoubleValuesMap.count(DoublePredicate predicate) intDoubleBooleanHashMap.KeysView.count(DoublePredicate predicate) intImmutableDoubleDoubleMapKeySet.count(DoublePredicate predicate) intImmutableDoubleMapKeySet.count(DoublePredicate predicate) intObjectDoubleHashMap.count(DoublePredicate predicate) intObjectDoubleHashMap.ValuesCollection.count(DoublePredicate predicate) intObjectDoubleHashMapWithHashingStrategy.count(DoublePredicate predicate) intObjectDoubleHashMapWithHashingStrategy.ValuesCollection.count(DoublePredicate predicate) intSynchronizedByteDoubleMap.count(DoublePredicate predicate) intSynchronizedCharDoubleMap.count(DoublePredicate predicate) intSynchronizedDoubleDoubleMap.count(DoublePredicate predicate) intSynchronizedFloatDoubleMap.count(DoublePredicate predicate) intSynchronizedIntDoubleMap.count(DoublePredicate predicate) intSynchronizedLongDoubleMap.count(DoublePredicate predicate) intSynchronizedObjectDoubleMap.count(DoublePredicate predicate) intSynchronizedShortDoubleMap.count(DoublePredicate predicate) intUnmodifiableByteDoubleMap.count(DoublePredicate predicate) intUnmodifiableCharDoubleMap.count(DoublePredicate predicate) intUnmodifiableDoubleDoubleMap.count(DoublePredicate predicate) intUnmodifiableFloatDoubleMap.count(DoublePredicate predicate) intUnmodifiableIntDoubleMap.count(DoublePredicate predicate) intUnmodifiableLongDoubleMap.count(DoublePredicate predicate) intUnmodifiableObjectDoubleMap.count(DoublePredicate predicate) intUnmodifiableShortDoubleMap.count(DoublePredicate predicate) doubleAbstractMutableDoubleKeySet.detectIfNone(DoublePredicate predicate, double ifNone) doubleAbstractMutableDoubleValuesMap.AbstractDoubleValuesCollection.detectIfNone(DoublePredicate predicate, double ifNone) doubleAbstractMutableDoubleValuesMap.detectIfNone(DoublePredicate predicate, double value) doubleDoubleBooleanHashMap.KeysView.detectIfNone(DoublePredicate predicate, double value) doubleImmutableDoubleDoubleMapKeySet.detectIfNone(DoublePredicate predicate, double ifNone) doubleImmutableDoubleMapKeySet.detectIfNone(DoublePredicate predicate, double ifNone) doubleObjectDoubleHashMap.detectIfNone(DoublePredicate predicate, double ifNone) doubleObjectDoubleHashMap.ValuesCollection.detectIfNone(DoublePredicate predicate, double ifNone) doubleObjectDoubleHashMapWithHashingStrategy.detectIfNone(DoublePredicate predicate, double ifNone) doubleObjectDoubleHashMapWithHashingStrategy.ValuesCollection.detectIfNone(DoublePredicate predicate, double ifNone) doubleSynchronizedByteDoubleMap.detectIfNone(DoublePredicate predicate, double ifNone) doubleSynchronizedCharDoubleMap.detectIfNone(DoublePredicate predicate, double ifNone) doubleSynchronizedDoubleDoubleMap.detectIfNone(DoublePredicate predicate, double ifNone) doubleSynchronizedFloatDoubleMap.detectIfNone(DoublePredicate predicate, double ifNone) doubleSynchronizedIntDoubleMap.detectIfNone(DoublePredicate predicate, double ifNone) doubleSynchronizedLongDoubleMap.detectIfNone(DoublePredicate predicate, double ifNone) doubleSynchronizedObjectDoubleMap.detectIfNone(DoublePredicate predicate, double ifNone) doubleSynchronizedShortDoubleMap.detectIfNone(DoublePredicate predicate, double ifNone) doubleUnmodifiableByteDoubleMap.detectIfNone(DoublePredicate predicate, double ifNone) doubleUnmodifiableCharDoubleMap.detectIfNone(DoublePredicate predicate, double ifNone) doubleUnmodifiableDoubleDoubleMap.detectIfNone(DoublePredicate predicate, double ifNone) doubleUnmodifiableFloatDoubleMap.detectIfNone(DoublePredicate predicate, double ifNone) doubleUnmodifiableIntDoubleMap.detectIfNone(DoublePredicate predicate, double ifNone) doubleUnmodifiableLongDoubleMap.detectIfNone(DoublePredicate predicate, double ifNone) doubleUnmodifiableObjectDoubleMap.detectIfNone(DoublePredicate predicate, double ifNone) doubleUnmodifiableShortDoubleMap.detectIfNone(DoublePredicate predicate, double ifNone) booleanAbstractMutableDoubleValuesMap.AbstractDoubleValuesCollection.noneSatisfy(DoublePredicate predicate) booleanImmutableDoubleDoubleMapKeySet.noneSatisfy(DoublePredicate predicate) booleanImmutableDoubleMapKeySet.noneSatisfy(DoublePredicate predicate) booleanObjectDoubleHashMap.noneSatisfy(DoublePredicate predicate) booleanObjectDoubleHashMap.ValuesCollection.noneSatisfy(DoublePredicate predicate) booleanObjectDoubleHashMapWithHashingStrategy.noneSatisfy(DoublePredicate predicate) booleanObjectDoubleHashMapWithHashingStrategy.ValuesCollection.noneSatisfy(DoublePredicate predicate) booleanSynchronizedByteDoubleMap.noneSatisfy(DoublePredicate predicate) booleanSynchronizedCharDoubleMap.noneSatisfy(DoublePredicate predicate) booleanSynchronizedDoubleDoubleMap.noneSatisfy(DoublePredicate predicate) booleanSynchronizedFloatDoubleMap.noneSatisfy(DoublePredicate predicate) booleanSynchronizedIntDoubleMap.noneSatisfy(DoublePredicate predicate) booleanSynchronizedLongDoubleMap.noneSatisfy(DoublePredicate predicate) booleanSynchronizedObjectDoubleMap.noneSatisfy(DoublePredicate predicate) booleanSynchronizedShortDoubleMap.noneSatisfy(DoublePredicate predicate) booleanUnmodifiableByteDoubleMap.noneSatisfy(DoublePredicate predicate) booleanUnmodifiableCharDoubleMap.noneSatisfy(DoublePredicate predicate) booleanUnmodifiableDoubleDoubleMap.noneSatisfy(DoublePredicate predicate) booleanUnmodifiableFloatDoubleMap.noneSatisfy(DoublePredicate predicate) booleanUnmodifiableIntDoubleMap.noneSatisfy(DoublePredicate predicate) booleanUnmodifiableLongDoubleMap.noneSatisfy(DoublePredicate predicate) booleanUnmodifiableObjectDoubleMap.noneSatisfy(DoublePredicate predicate) booleanUnmodifiableShortDoubleMap.noneSatisfy(DoublePredicate predicate) AbstractMutableDoubleKeySet.reject(DoublePredicate predicate) AbstractMutableDoubleValuesMap.AbstractDoubleValuesCollection.reject(DoublePredicate predicate) AbstractMutableDoubleValuesMap.reject(DoublePredicate predicate) ImmutableDoubleDoubleMapKeySet.reject(DoublePredicate predicate) ImmutableDoubleMapKeySet.reject(DoublePredicate predicate) ObjectDoubleHashMap.reject(DoublePredicate predicate) ObjectDoubleHashMap.ValuesCollection.reject(DoublePredicate predicate) ObjectDoubleHashMapWithHashingStrategy.reject(DoublePredicate predicate) ObjectDoubleHashMapWithHashingStrategy.ValuesCollection.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.AbstractDoubleValuesCollection.select(DoublePredicate predicate) AbstractMutableDoubleValuesMap.select(DoublePredicate predicate) ImmutableDoubleDoubleMapKeySet.select(DoublePredicate predicate) ImmutableDoubleMapKeySet.select(DoublePredicate predicate) ObjectDoubleHashMap.select(DoublePredicate predicate) ObjectDoubleHashMap.ValuesCollection.select(DoublePredicate predicate) ObjectDoubleHashMapWithHashingStrategy.select(DoublePredicate predicate) ObjectDoubleHashMapWithHashingStrategy.ValuesCollection.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 TypeMethodDescriptionbooleanSynchronizedDoubleIterable.allSatisfy(DoublePredicate predicate) booleanSynchronizedDoubleIterable.anySatisfy(DoublePredicate predicate) intSynchronizedDoubleIterable.count(DoublePredicate predicate) doubleSynchronizedDoubleIterable.detectIfNone(DoublePredicate predicate, double ifNone) booleanSynchronizedDoubleIterable.noneSatisfy(DoublePredicate predicate) SynchronizedDoubleIterable.reject(DoublePredicate predicate) SynchronizedDoubleIterable.select(DoublePredicate predicate) -
Uses of DoublePredicate in org.eclipse.collections.impl.set.immutable.primitive
Methods in org.eclipse.collections.impl.set.immutable.primitive with parameters of type DoublePredicateModifier and TypeMethodDescriptionbooleanImmutableDoubleEmptySet.allSatisfy(DoublePredicate predicate) booleanImmutableDoubleSingletonSet.allSatisfy(DoublePredicate predicate) booleanImmutableDoubleEmptySet.anySatisfy(DoublePredicate predicate) booleanImmutableDoubleSingletonSet.anySatisfy(DoublePredicate predicate) intImmutableDoubleEmptySet.count(DoublePredicate predicate) intImmutableDoubleSingletonSet.count(DoublePredicate predicate) doubleImmutableDoubleEmptySet.detectIfNone(DoublePredicate predicate, double ifNone) doubleImmutableDoubleSingletonSet.detectIfNone(DoublePredicate predicate, double ifNone) booleanImmutableDoubleEmptySet.noneSatisfy(DoublePredicate predicate) booleanImmutableDoubleSingletonSet.noneSatisfy(DoublePredicate predicate) ImmutableDoubleEmptySet.reject(DoublePredicate predicate) ImmutableDoubleSingletonSet.reject(DoublePredicate predicate) ImmutableDoubleEmptySet.select(DoublePredicate predicate) ImmutableDoubleSingletonSet.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 TypeMethodDescriptionbooleanDoubleHashSet.allSatisfy(DoublePredicate predicate) booleanDoubleHashSet.ImmutableDoubleHashSet.allSatisfy(DoublePredicate predicate) booleanDoubleHashSet.anySatisfy(DoublePredicate predicate) booleanDoubleHashSet.ImmutableDoubleHashSet.anySatisfy(DoublePredicate predicate) intDoubleHashSet.count(DoublePredicate predicate) intDoubleHashSet.ImmutableDoubleHashSet.count(DoublePredicate predicate) doubleDoubleHashSet.detectIfNone(DoublePredicate predicate, double ifNone) doubleDoubleHashSet.ImmutableDoubleHashSet.detectIfNone(DoublePredicate predicate, double ifNone) booleanDoubleHashSet.ImmutableDoubleHashSet.noneSatisfy(DoublePredicate predicate) DoubleHashSet.ImmutableDoubleHashSet.reject(DoublePredicate predicate) DoubleHashSet.reject(DoublePredicate predicate) <R extends MutableDoubleCollection>
RDoubleHashSet.reject(DoublePredicate predicate, R target) SynchronizedDoubleSet.reject(DoublePredicate predicate) UnmodifiableDoubleSet.reject(DoublePredicate predicate) DoubleHashSet.ImmutableDoubleHashSet.select(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.immutable.primitive
Methods in org.eclipse.collections.impl.stack.immutable.primitive with parameters of type DoublePredicateModifier and TypeMethodDescriptionbooleanImmutableDoubleEmptyStack.allSatisfy(DoublePredicate predicate) booleanImmutableDoubleSingletonStack.allSatisfy(DoublePredicate predicate) booleanImmutableDoubleEmptyStack.anySatisfy(DoublePredicate predicate) booleanImmutableDoubleSingletonStack.anySatisfy(DoublePredicate predicate) intImmutableDoubleEmptyStack.count(DoublePredicate predicate) intImmutableDoubleSingletonStack.count(DoublePredicate predicate) doubleImmutableDoubleEmptyStack.detectIfNone(DoublePredicate predicate, double ifNone) doubleImmutableDoubleSingletonStack.detectIfNone(DoublePredicate predicate, double ifNone) booleanImmutableDoubleEmptyStack.noneSatisfy(DoublePredicate predicate) booleanImmutableDoubleSingletonStack.noneSatisfy(DoublePredicate predicate) ImmutableDoubleArrayStack.reject(DoublePredicate predicate) ImmutableDoubleEmptyStack.reject(DoublePredicate predicate) ImmutableDoubleSingletonStack.reject(DoublePredicate predicate) ImmutableDoubleArrayStack.select(DoublePredicate predicate) ImmutableDoubleEmptyStack.select(DoublePredicate predicate) ImmutableDoubleSingletonStack.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 TypeMethodDescriptionbooleanSynchronizedDoubleStack.allSatisfy(DoublePredicate predicate) booleanUnmodifiableDoubleStack.allSatisfy(DoublePredicate predicate) booleanSynchronizedDoubleStack.anySatisfy(DoublePredicate predicate) booleanUnmodifiableDoubleStack.anySatisfy(DoublePredicate predicate) intSynchronizedDoubleStack.count(DoublePredicate predicate) intUnmodifiableDoubleStack.count(DoublePredicate predicate) doubleSynchronizedDoubleStack.detectIfNone(DoublePredicate predicate, double ifNone) doubleUnmodifiableDoubleStack.detectIfNone(DoublePredicate predicate, double ifNone) booleanSynchronizedDoubleStack.noneSatisfy(DoublePredicate predicate) booleanUnmodifiableDoubleStack.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 TypeMethodDescriptionbooleanAbstractDoubleStack.allSatisfy(DoublePredicate predicate) booleanAbstractDoubleStack.anySatisfy(DoublePredicate predicate) intAbstractDoubleStack.count(DoublePredicate predicate) doubleAbstractDoubleStack.detectIfNone(DoublePredicate predicate, double ifNone) booleanAbstractDoubleStack.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 booleanDoubleIterableIterate.allSatisfy(DoubleIterable iterable, DoublePredicate predicate) static booleanDoubleIteratorIterate.allSatisfy(DoubleIterator iterator, DoublePredicate predicate) static booleanDoubleIterableIterate.anySatisfy(DoubleIterable iterable, DoublePredicate predicate) static booleanDoubleIteratorIterate.anySatisfy(DoubleIterator iterator, DoublePredicate predicate) static intDoubleIterableIterate.count(DoubleIterable iterable, DoublePredicate predicate) static intDoubleIteratorIterate.count(DoubleIterator iterator, DoublePredicate predicate) static doubleDoubleIterableIterate.detectIfNone(DoubleIterable iterable, DoublePredicate predicate, double ifNone) static doubleDoubleIteratorIterate.detectIfNone(DoubleIterator iterator, DoublePredicate predicate, double ifNone) static booleanDoubleIterableIterate.noneSatisfy(DoubleIterable iterable, DoublePredicate predicate) static booleanDoubleIteratorIterate.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 LazyDoubleIterableLazyDoubleIterate.select(DoubleIterable iterable, DoublePredicate predicate) Creates a deferred filtering double iterable for the specified double iterable.