| 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 |
FloatIterable.allSatisfy(FloatPredicate predicate)
Returns true if all of the elements in the FloatIterable return true for the
specified predicate, otherwise returns false.
|
boolean |
FloatIterable.anySatisfy(FloatPredicate predicate)
Returns true if any of the elements in the FloatIterable return true for the
specified predicate, otherwise returns false.
|
int |
FloatIterable.count(FloatPredicate predicate)
Returns a count of the number of elements in the FloatIterable that return true for the
specified predicate.
|
float |
FloatIterable.detectIfNone(FloatPredicate predicate,
float ifNone) |
boolean |
FloatIterable.noneSatisfy(FloatPredicate predicate)
Returns true if none of the elements in the FloatIterable return true for the
specified predicate, otherwise returns false.
|
FloatIterable |
FloatIterable.reject(FloatPredicate predicate)
Returns a new FloatIterable with all of the elements in the FloatIterable that
return false for the specified predicate.
|
LazyFloatIterable |
LazyFloatIterable.reject(FloatPredicate predicate) |
default <R extends MutableFloatCollection> |
FloatIterable.reject(FloatPredicate predicate,
R target)
Same as
FloatIterable.reject(FloatPredicate) , only the results are added to the target MutableFloatCollection. |
FloatIterable |
FloatIterable.select(FloatPredicate predicate)
Returns a new FloatIterable with all of the elements in the FloatIterable that
return true for the specified predicate.
|
LazyFloatIterable |
LazyFloatIterable.select(FloatPredicate predicate) |
default <R extends MutableFloatCollection> |
FloatIterable.select(FloatPredicate predicate,
R target)
Same as
FloatIterable.select(FloatPredicate) , only the results are added to the target MutableFloatCollection. |
| Modifier and Type | Method and Description |
|---|---|
FloatBag |
FloatBag.reject(FloatPredicate predicate) |
MutableFloatBag |
MutableFloatBag.reject(FloatPredicate predicate) |
ImmutableFloatBag |
ImmutableFloatBag.reject(FloatPredicate predicate) |
FloatBag |
FloatBag.select(FloatPredicate predicate) |
MutableFloatBag |
MutableFloatBag.select(FloatPredicate predicate) |
ImmutableFloatBag |
ImmutableFloatBag.select(FloatPredicate predicate) |
| Modifier and Type | Method and Description |
|---|---|
MutableFloatCollection |
MutableFloatCollection.reject(FloatPredicate predicate) |
ImmutableFloatCollection |
ImmutableFloatCollection.reject(FloatPredicate predicate) |
default boolean |
MutableFloatCollection.removeIf(FloatPredicate predicate) |
MutableFloatCollection |
MutableFloatCollection.select(FloatPredicate predicate) |
ImmutableFloatCollection |
ImmutableFloatCollection.select(FloatPredicate predicate) |
| Modifier and Type | Method and Description |
|---|---|
FloatList |
FloatList.reject(FloatPredicate predicate) |
MutableFloatList |
MutableFloatList.reject(FloatPredicate predicate) |
ImmutableFloatList |
ImmutableFloatList.reject(FloatPredicate predicate) |
FloatList |
FloatList.select(FloatPredicate predicate) |
MutableFloatList |
MutableFloatList.select(FloatPredicate predicate) |
ImmutableFloatList |
ImmutableFloatList.select(FloatPredicate predicate) |
| Modifier and Type | Method and Description |
|---|---|
ReversibleFloatIterable |
ReversibleFloatIterable.reject(FloatPredicate predicate) |
OrderedFloatIterable |
OrderedFloatIterable.reject(FloatPredicate predicate) |
ReversibleFloatIterable |
ReversibleFloatIterable.select(FloatPredicate predicate) |
OrderedFloatIterable |
OrderedFloatIterable.select(FloatPredicate predicate) |
| Modifier and Type | Method and Description |
|---|---|
FloatSet |
FloatSet.reject(FloatPredicate predicate) |
MutableFloatSet |
MutableFloatSet.reject(FloatPredicate predicate) |
ImmutableFloatSet |
ImmutableFloatSet.reject(FloatPredicate predicate) |
FloatSet |
FloatSet.select(FloatPredicate predicate) |
MutableFloatSet |
MutableFloatSet.select(FloatPredicate predicate) |
ImmutableFloatSet |
ImmutableFloatSet.select(FloatPredicate predicate) |
| Modifier and Type | Method and Description |
|---|---|
FloatStack |
FloatStack.reject(FloatPredicate predicate) |
MutableFloatStack |
MutableFloatStack.reject(FloatPredicate predicate) |
ImmutableFloatStack |
ImmutableFloatStack.reject(FloatPredicate predicate) |
FloatStack |
FloatStack.select(FloatPredicate predicate) |
MutableFloatStack |
MutableFloatStack.select(FloatPredicate predicate) |
ImmutableFloatStack |
ImmutableFloatStack.select(FloatPredicate predicate) |
Copyright © 2004–2021. All rights reserved.