Uses of Interface
org.eclipse.collections.api.block.predicate.primitive.DoublePredicate
-
Packages that use DoublePredicate Package Description org.eclipse.collections.api This package contains interfaces for Eclipse Collections API.org.eclipse.collections.api.bag.primitive This package contains API for Primitive Bags with Mutable and Immutable variants.org.eclipse.collections.api.collection.primitive This package contains mutable and immutable primitive collection API.org.eclipse.collections.api.list.primitive This package contains mutable and immutable primitive list API.org.eclipse.collections.api.map.primitive This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.org.eclipse.collections.api.ordered.primitive org.eclipse.collections.api.set.primitive This package contains API for mutable and immutable primitive sets.org.eclipse.collections.api.stack.primitive 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 DoublePredicate Modifier and Type Method Description booleanDoubleIterable. 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.DoubleIterableDoubleIterable. 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.LazyDoubleIterableLazyDoubleIterable. reject(DoublePredicate predicate)DoubleIterableDoubleIterable. 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.LazyDoubleIterableLazyDoubleIterable. 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 DoublePredicate Modifier and Type Method Description DoubleBagDoubleBag. reject(DoublePredicate predicate)ImmutableDoubleBagImmutableDoubleBag. reject(DoublePredicate predicate)MutableDoubleBagMutableDoubleBag. reject(DoublePredicate predicate)DoubleBagDoubleBag. select(DoublePredicate predicate)ImmutableDoubleBagImmutableDoubleBag. select(DoublePredicate predicate)MutableDoubleBagMutableDoubleBag. 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 DoublePredicate Modifier and Type Method Description ImmutableDoubleCollectionImmutableDoubleCollection. reject(DoublePredicate predicate)MutableDoubleCollectionMutableDoubleCollection. reject(DoublePredicate predicate)default booleanMutableDoubleCollection. removeIf(DoublePredicate predicate)ImmutableDoubleCollectionImmutableDoubleCollection. select(DoublePredicate predicate)MutableDoubleCollectionMutableDoubleCollection. 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 DoublePredicate Modifier and Type Method Description DoubleListDoubleList. reject(DoublePredicate predicate)ImmutableDoubleListImmutableDoubleList. reject(DoublePredicate predicate)MutableDoubleListMutableDoubleList. reject(DoublePredicate predicate)DoubleListDoubleList. select(DoublePredicate predicate)ImmutableDoubleListImmutableDoubleList. select(DoublePredicate predicate)MutableDoubleListMutableDoubleList. select(DoublePredicate predicate) -
Uses of DoublePredicate in org.eclipse.collections.api.map.primitive
-
Uses of DoublePredicate in org.eclipse.collections.api.ordered.primitive
Methods in org.eclipse.collections.api.ordered.primitive with parameters of type DoublePredicate Modifier and Type Method Description OrderedDoubleIterableOrderedDoubleIterable. reject(DoublePredicate predicate)ReversibleDoubleIterableReversibleDoubleIterable. reject(DoublePredicate predicate)OrderedDoubleIterableOrderedDoubleIterable. select(DoublePredicate predicate)ReversibleDoubleIterableReversibleDoubleIterable. 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 DoublePredicate Modifier and Type Method Description DoubleSetDoubleSet. reject(DoublePredicate predicate)ImmutableDoubleSetImmutableDoubleSet. reject(DoublePredicate predicate)MutableDoubleSetMutableDoubleSet. reject(DoublePredicate predicate)DoubleSetDoubleSet. select(DoublePredicate predicate)ImmutableDoubleSetImmutableDoubleSet. select(DoublePredicate predicate)MutableDoubleSetMutableDoubleSet. 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 DoublePredicate Modifier and Type Method Description DoubleStackDoubleStack. reject(DoublePredicate predicate)ImmutableDoubleStackImmutableDoubleStack. reject(DoublePredicate predicate)MutableDoubleStackMutableDoubleStack. reject(DoublePredicate predicate)DoubleStackDoubleStack. select(DoublePredicate predicate)ImmutableDoubleStackImmutableDoubleStack. select(DoublePredicate predicate)MutableDoubleStackMutableDoubleStack. select(DoublePredicate predicate)
-