| 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.
|
| Modifier and Type | Method and 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.
|
LazyDoubleIterable |
LazyDoubleIterable.reject(DoublePredicate predicate) |
default <R extends MutableDoubleCollection> |
DoubleIterable.reject(DoublePredicate predicate,
R target)
Same as
DoubleIterable.reject(DoublePredicate) , only the results are added to the target MutableDoubleCollection. |
DoubleIterable |
DoubleIterable.select(DoublePredicate predicate)
Returns a new DoubleIterable with all of the elements in the DoubleIterable that
return true for the specified predicate.
|
LazyDoubleIterable |
LazyDoubleIterable.select(DoublePredicate predicate) |
default <R extends MutableDoubleCollection> |
DoubleIterable.select(DoublePredicate predicate,
R target)
Same as
DoubleIterable.select(DoublePredicate) , only the results are added to the target MutableDoubleCollection. |
| Modifier and Type | Method and Description |
|---|---|
DoubleBag |
DoubleBag.reject(DoublePredicate predicate) |
MutableDoubleBag |
MutableDoubleBag.reject(DoublePredicate predicate) |
ImmutableDoubleBag |
ImmutableDoubleBag.reject(DoublePredicate predicate) |
DoubleBag |
DoubleBag.select(DoublePredicate predicate) |
MutableDoubleBag |
MutableDoubleBag.select(DoublePredicate predicate) |
ImmutableDoubleBag |
ImmutableDoubleBag.select(DoublePredicate predicate) |
| Modifier and Type | Method and Description |
|---|---|
MutableDoubleCollection |
MutableDoubleCollection.reject(DoublePredicate predicate) |
ImmutableDoubleCollection |
ImmutableDoubleCollection.reject(DoublePredicate predicate) |
default boolean |
MutableDoubleCollection.removeIf(DoublePredicate predicate) |
MutableDoubleCollection |
MutableDoubleCollection.select(DoublePredicate predicate) |
ImmutableDoubleCollection |
ImmutableDoubleCollection.select(DoublePredicate predicate) |
| Modifier and Type | Method and Description |
|---|---|
DoubleList |
DoubleList.reject(DoublePredicate predicate) |
MutableDoubleList |
MutableDoubleList.reject(DoublePredicate predicate) |
ImmutableDoubleList |
ImmutableDoubleList.reject(DoublePredicate predicate) |
DoubleList |
DoubleList.select(DoublePredicate predicate) |
MutableDoubleList |
MutableDoubleList.select(DoublePredicate predicate) |
ImmutableDoubleList |
ImmutableDoubleList.select(DoublePredicate predicate) |
| Modifier and Type | Method and Description |
|---|---|
ReversibleDoubleIterable |
ReversibleDoubleIterable.reject(DoublePredicate predicate) |
OrderedDoubleIterable |
OrderedDoubleIterable.reject(DoublePredicate predicate) |
ReversibleDoubleIterable |
ReversibleDoubleIterable.select(DoublePredicate predicate) |
OrderedDoubleIterable |
OrderedDoubleIterable.select(DoublePredicate predicate) |
| Modifier and Type | Method and Description |
|---|---|
DoubleSet |
DoubleSet.reject(DoublePredicate predicate) |
MutableDoubleSet |
MutableDoubleSet.reject(DoublePredicate predicate) |
ImmutableDoubleSet |
ImmutableDoubleSet.reject(DoublePredicate predicate) |
DoubleSet |
DoubleSet.select(DoublePredicate predicate) |
MutableDoubleSet |
MutableDoubleSet.select(DoublePredicate predicate) |
ImmutableDoubleSet |
ImmutableDoubleSet.select(DoublePredicate predicate) |
| Modifier and Type | Method and Description |
|---|---|
DoubleStack |
DoubleStack.reject(DoublePredicate predicate) |
MutableDoubleStack |
MutableDoubleStack.reject(DoublePredicate predicate) |
ImmutableDoubleStack |
ImmutableDoubleStack.reject(DoublePredicate predicate) |
DoubleStack |
DoubleStack.select(DoublePredicate predicate) |
MutableDoubleStack |
MutableDoubleStack.select(DoublePredicate predicate) |
ImmutableDoubleStack |
ImmutableDoubleStack.select(DoublePredicate predicate) |
Copyright © 2004–2021. All rights reserved.