Uses of Interface
org.eclipse.collections.api.block.predicate.primitive.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.
|
org.eclipse.collections.impl.bag.mutable.primitive |
This package contains implementations of the mutable primitive bag interfaces.
|
org.eclipse.collections.impl.block.factory.primitive |
This package contains factory implementations for primitive functions, primitive predicates, primitive procedures and primitive comparators.
|
org.eclipse.collections.impl.block.function.primitive |
This package contains implementations of primitive functions.
|
org.eclipse.collections.impl.block.procedure.primitive |
This package contains implementations of primitive procedures.
|
org.eclipse.collections.impl.collection.mutable.primitive |
This package contains implementations of the mutable primitive collection interfaces.
|
org.eclipse.collections.impl.lazy.primitive |
This package contains implementations of the lazy primitive iterator interfaces.
|
org.eclipse.collections.impl.list.mutable.primitive |
This package contains implementations of the mutable primitive list interfaces.
|
org.eclipse.collections.impl.map.mutable.primitive |
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
|
org.eclipse.collections.impl.primitive | |
org.eclipse.collections.impl.set.mutable.primitive |
This package contains implementations of the mutable primitive set interfaces.
|
org.eclipse.collections.impl.stack.mutable.primitive |
This package contains implementations of the mutable primitive stack interfaces.
|
org.eclipse.collections.impl.stack.primitive | |
org.eclipse.collections.impl.utility.internal.primitive | |
org.eclipse.collections.impl.utility.primitive |
-
Uses of DoublePredicate in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type DoublePredicate Modifier and Type Method Description boolean
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)
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
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
LazyDoubleIterable. reject(DoublePredicate predicate)
DoubleIterable
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
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 DoublePredicate Modifier and Type Method Description DoubleBag
DoubleBag. reject(DoublePredicate predicate)
ImmutableDoubleBag
ImmutableDoubleBag. reject(DoublePredicate predicate)
MutableDoubleBag
MutableDoubleBag. reject(DoublePredicate predicate)
DoubleBag
DoubleBag. select(DoublePredicate predicate)
ImmutableDoubleBag
ImmutableDoubleBag. select(DoublePredicate predicate)
MutableDoubleBag
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 DoublePredicate Modifier and Type Method Description ImmutableDoubleCollection
ImmutableDoubleCollection. reject(DoublePredicate predicate)
MutableDoubleCollection
MutableDoubleCollection. reject(DoublePredicate predicate)
default boolean
MutableDoubleCollection. removeIf(DoublePredicate predicate)
ImmutableDoubleCollection
ImmutableDoubleCollection. select(DoublePredicate predicate)
MutableDoubleCollection
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 DoublePredicate Modifier and Type Method Description DoubleList
DoubleList. reject(DoublePredicate predicate)
ImmutableDoubleList
ImmutableDoubleList. reject(DoublePredicate predicate)
MutableDoubleList
MutableDoubleList. reject(DoublePredicate predicate)
DoubleList
DoubleList. select(DoublePredicate predicate)
ImmutableDoubleList
ImmutableDoubleList. select(DoublePredicate predicate)
MutableDoubleList
MutableDoubleList. 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 OrderedDoubleIterable
OrderedDoubleIterable. reject(DoublePredicate predicate)
ReversibleDoubleIterable
ReversibleDoubleIterable. reject(DoublePredicate predicate)
OrderedDoubleIterable
OrderedDoubleIterable. select(DoublePredicate predicate)
ReversibleDoubleIterable
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 DoublePredicate Modifier and Type Method Description DoubleSet
DoubleSet. reject(DoublePredicate predicate)
ImmutableDoubleSet
ImmutableDoubleSet. reject(DoublePredicate predicate)
MutableDoubleSet
MutableDoubleSet. reject(DoublePredicate predicate)
DoubleSet
DoubleSet. select(DoublePredicate predicate)
ImmutableDoubleSet
ImmutableDoubleSet. select(DoublePredicate predicate)
MutableDoubleSet
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 DoublePredicate Modifier and Type Method Description DoubleStack
DoubleStack. reject(DoublePredicate predicate)
ImmutableDoubleStack
ImmutableDoubleStack. reject(DoublePredicate predicate)
MutableDoubleStack
MutableDoubleStack. reject(DoublePredicate predicate)
DoubleStack
DoubleStack. select(DoublePredicate predicate)
ImmutableDoubleStack
ImmutableDoubleStack. select(DoublePredicate predicate)
MutableDoubleStack
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 DoublePredicate Modifier and Type Method Description boolean
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
DoubleHashBag. reject(DoublePredicate predicate)
MutableDoubleBag
SynchronizedDoubleBag. reject(DoublePredicate predicate)
MutableDoubleBag
UnmodifiableDoubleBag. reject(DoublePredicate predicate)
boolean
DoubleHashBag. removeIf(DoublePredicate predicate)
DoubleHashBag
DoubleHashBag. select(DoublePredicate predicate)
MutableDoubleBag
SynchronizedDoubleBag. select(DoublePredicate predicate)
MutableDoubleBag
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 DoublePredicate Modifier and Type Method Description static 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 DoublePredicate Modifier and Type Method Description static 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 DoublePredicate Modifier and Type Method Description DoubleCaseFunction<V>
DoubleCaseFunction. 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 DoublePredicate Modifier and Type Method Description DoubleCaseProcedure
DoubleCaseProcedure. 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 DoublePredicate Modifier and Type Method Description boolean
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)
MutableDoubleCollection
AbstractSynchronizedDoubleCollection. reject(DoublePredicate predicate)
MutableDoubleCollection
AbstractUnmodifiableDoubleCollection. reject(DoublePredicate predicate)
boolean
AbstractSynchronizedDoubleCollection. removeIf(DoublePredicate predicate)
boolean
AbstractUnmodifiableDoubleCollection. removeIf(DoublePredicate predicate)
MutableDoubleCollection
AbstractSynchronizedDoubleCollection. select(DoublePredicate predicate)
MutableDoubleCollection
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 DoublePredicate Modifier and Type Method Description boolean
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
CollectDoubleIterable. noneSatisfy(DoublePredicate predicate)
boolean
LazyDoubleIterableAdapter. noneSatisfy(DoublePredicate predicate)
boolean
SelectDoubleIterable. noneSatisfy(DoublePredicate predicate)
boolean
TapDoubleIterable. noneSatisfy(DoublePredicate predicate)
LazyDoubleIterable
AbstractLazyDoubleIterable. reject(DoublePredicate predicate)
LazyDoubleIterable
AbstractLazyDoubleIterable. select(DoublePredicate predicate)
Constructors in org.eclipse.collections.impl.lazy.primitive with parameters of type DoublePredicate Constructor Description SelectDoubleIterable(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 DoublePredicate Modifier and Type Method Description boolean
DoubleArrayList. allSatisfy(DoublePredicate predicate)
boolean
DoubleArrayList. anySatisfy(DoublePredicate predicate)
int
DoubleArrayList. count(DoublePredicate predicate)
double
DoubleArrayList. detectIfNone(DoublePredicate predicate, double ifNone)
boolean
DoubleArrayList. noneSatisfy(DoublePredicate predicate)
DoubleArrayList
DoubleArrayList. reject(DoublePredicate predicate)
<R extends MutableDoubleCollection>
RDoubleArrayList. reject(DoublePredicate predicate, R target)
MutableDoubleList
SynchronizedDoubleList. reject(DoublePredicate predicate)
MutableDoubleList
UnmodifiableDoubleList. reject(DoublePredicate predicate)
boolean
DoubleArrayList. removeIf(DoublePredicate predicate)
DoubleArrayList
DoubleArrayList. select(DoublePredicate predicate)
<R extends MutableDoubleCollection>
RDoubleArrayList. select(DoublePredicate predicate, R target)
MutableDoubleList
SynchronizedDoubleList. select(DoublePredicate predicate)
MutableDoubleList
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 DoublePredicate Modifier and Type Method Description boolean
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
AbstractMutableDoubleKeySet. noneSatisfy(DoublePredicate predicate)
boolean
AbstractMutableDoubleValuesMap. noneSatisfy(DoublePredicate predicate)
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)
MutableDoubleSet
AbstractMutableDoubleKeySet. reject(DoublePredicate predicate)
MutableDoubleBag
AbstractMutableDoubleValuesMap. reject(DoublePredicate predicate)
MutableDoubleCollection
ObjectDoubleHashMap. reject(DoublePredicate predicate)
MutableDoubleCollection
ObjectDoubleHashMapWithHashingStrategy. reject(DoublePredicate predicate)
MutableDoubleBag
SynchronizedByteDoubleMap. reject(DoublePredicate predicate)
MutableDoubleBag
SynchronizedCharDoubleMap. reject(DoublePredicate predicate)
MutableDoubleBag
SynchronizedDoubleDoubleMap. reject(DoublePredicate predicate)
MutableDoubleBag
SynchronizedFloatDoubleMap. reject(DoublePredicate predicate)
MutableDoubleBag
SynchronizedIntDoubleMap. reject(DoublePredicate predicate)
MutableDoubleBag
SynchronizedLongDoubleMap. reject(DoublePredicate predicate)
MutableDoubleCollection
SynchronizedObjectDoubleMap. reject(DoublePredicate predicate)
MutableDoubleBag
SynchronizedShortDoubleMap. reject(DoublePredicate predicate)
MutableDoubleBag
UnmodifiableByteDoubleMap. reject(DoublePredicate predicate)
MutableDoubleBag
UnmodifiableCharDoubleMap. reject(DoublePredicate predicate)
MutableDoubleBag
UnmodifiableDoubleDoubleMap. reject(DoublePredicate predicate)
MutableDoubleBag
UnmodifiableFloatDoubleMap. reject(DoublePredicate predicate)
MutableDoubleBag
UnmodifiableIntDoubleMap. reject(DoublePredicate predicate)
MutableDoubleBag
UnmodifiableLongDoubleMap. reject(DoublePredicate predicate)
MutableDoubleCollection
UnmodifiableObjectDoubleMap. reject(DoublePredicate predicate)
MutableDoubleBag
UnmodifiableShortDoubleMap. reject(DoublePredicate predicate)
MutableDoubleSet
AbstractMutableDoubleKeySet. select(DoublePredicate predicate)
MutableDoubleBag
AbstractMutableDoubleValuesMap. select(DoublePredicate predicate)
MutableDoubleCollection
ObjectDoubleHashMap. select(DoublePredicate predicate)
MutableDoubleCollection
ObjectDoubleHashMapWithHashingStrategy. select(DoublePredicate predicate)
MutableDoubleBag
SynchronizedByteDoubleMap. select(DoublePredicate predicate)
MutableDoubleBag
SynchronizedCharDoubleMap. select(DoublePredicate predicate)
MutableDoubleBag
SynchronizedDoubleDoubleMap. select(DoublePredicate predicate)
MutableDoubleBag
SynchronizedFloatDoubleMap. select(DoublePredicate predicate)
MutableDoubleBag
SynchronizedIntDoubleMap. select(DoublePredicate predicate)
MutableDoubleBag
SynchronizedLongDoubleMap. select(DoublePredicate predicate)
MutableDoubleCollection
SynchronizedObjectDoubleMap. select(DoublePredicate predicate)
MutableDoubleBag
SynchronizedShortDoubleMap. select(DoublePredicate predicate)
MutableDoubleBag
UnmodifiableByteDoubleMap. select(DoublePredicate predicate)
MutableDoubleBag
UnmodifiableCharDoubleMap. select(DoublePredicate predicate)
MutableDoubleBag
UnmodifiableDoubleDoubleMap. select(DoublePredicate predicate)
MutableDoubleBag
UnmodifiableFloatDoubleMap. select(DoublePredicate predicate)
MutableDoubleBag
UnmodifiableIntDoubleMap. select(DoublePredicate predicate)
MutableDoubleBag
UnmodifiableLongDoubleMap. select(DoublePredicate predicate)
MutableDoubleCollection
UnmodifiableObjectDoubleMap. select(DoublePredicate predicate)
MutableDoubleBag
UnmodifiableShortDoubleMap. select(DoublePredicate predicate)
-
Uses of DoublePredicate in org.eclipse.collections.impl.primitive
Methods in org.eclipse.collections.impl.primitive with parameters of type DoublePredicate Modifier and Type Method Description boolean
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)
DoubleIterable
SynchronizedDoubleIterable. reject(DoublePredicate predicate)
DoubleIterable
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 DoublePredicate Modifier and Type Method Description boolean
DoubleHashSet. allSatisfy(DoublePredicate predicate)
boolean
DoubleHashSet. anySatisfy(DoublePredicate predicate)
int
DoubleHashSet. count(DoublePredicate predicate)
double
DoubleHashSet. detectIfNone(DoublePredicate predicate, double ifNone)
boolean
DoubleHashSet. noneSatisfy(DoublePredicate predicate)
DoubleHashSet
DoubleHashSet. reject(DoublePredicate predicate)
<R extends MutableDoubleCollection>
RDoubleHashSet. reject(DoublePredicate predicate, R target)
MutableDoubleSet
SynchronizedDoubleSet. reject(DoublePredicate predicate)
MutableDoubleSet
UnmodifiableDoubleSet. reject(DoublePredicate predicate)
DoubleHashSet
DoubleHashSet. select(DoublePredicate predicate)
<R extends MutableDoubleCollection>
RDoubleHashSet. select(DoublePredicate predicate, R target)
MutableDoubleSet
SynchronizedDoubleSet. select(DoublePredicate predicate)
MutableDoubleSet
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 DoublePredicate Modifier and Type Method Description boolean
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)
MutableDoubleStack
DoubleArrayStack. reject(DoublePredicate predicate)
MutableDoubleStack
SynchronizedDoubleStack. reject(DoublePredicate predicate)
MutableDoubleStack
UnmodifiableDoubleStack. reject(DoublePredicate predicate)
MutableDoubleStack
DoubleArrayStack. select(DoublePredicate predicate)
MutableDoubleStack
SynchronizedDoubleStack. select(DoublePredicate predicate)
MutableDoubleStack
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 DoublePredicate Modifier and Type Method Description boolean
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 DoublePredicate Modifier and Type Method Description static 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 DoublePredicate Modifier and Type Method Description static <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.