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.
-
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)