| 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 | |
| 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.
|
| Modifier and Type | Method and Description |
|---|---|
default <R extends MutableDoubleCollection> |
BooleanIterable.collectDouble(BooleanToDoubleFunction function,
R target)
Returns the target
MutableDoubleCollection with the results of applying the specified function on each element
of the source collection. |
default <R extends MutableDoubleCollection> |
ByteIterable.collectDouble(ByteToDoubleFunction function,
R target)
Returns the target
MutableDoubleCollection with the results of applying the specified function on each element
of the source collection. |
default <R extends MutableDoubleCollection> |
CharIterable.collectDouble(CharToDoubleFunction function,
R target)
Returns the target
MutableDoubleCollection with the results of applying the specified function on each element
of the source collection. |
default <R extends MutableDoubleCollection> |
RichIterable.collectDouble(DoubleFunction<? super T> doubleFunction,
R target)
Same as
RichIterable.collectDouble(DoubleFunction), except that the results are gathered into the specified target
collection. |
default <R extends MutableDoubleCollection> |
DoubleIterable.collectDouble(DoubleToDoubleFunction function,
R target)
Returns the target
MutableDoubleCollection with the results of applying the specified function on each element
of the source collection. |
default <R extends MutableDoubleCollection> |
FloatIterable.collectDouble(FloatToDoubleFunction function,
R target)
Returns the target
MutableDoubleCollection with the results of applying the specified function on each element
of the source collection. |
default <R extends MutableDoubleCollection> |
IntIterable.collectDouble(IntToDoubleFunction function,
R target)
Returns the target
MutableDoubleCollection with the results of applying the specified function on each element
of the source collection. |
default <R extends MutableDoubleCollection> |
LongIterable.collectDouble(LongToDoubleFunction function,
R target)
Returns the target
MutableDoubleCollection with the results of applying the specified function on each element
of the source collection. |
default <R extends MutableDoubleCollection> |
ShortIterable.collectDouble(ShortToDoubleFunction function,
R target)
Returns the target
MutableDoubleCollection with the results of applying the specified function on each element
of the source collection. |
default <R extends MutableDoubleCollection> |
RichIterable.flatCollectDouble(Function<? super T,? extends DoubleIterable> function,
R target)
Same as flatCollect, only the results are collected into the target collection.
|
default <R extends MutableDoubleCollection> |
DoubleIterable.reject(DoublePredicate predicate,
R target)
Same as
DoubleIterable.reject(DoublePredicate) , only the results are added to the target MutableDoubleCollection. |
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 | Interface and Description |
|---|---|
interface |
MutableDoubleBag
This file was automatically generated from template file mutablePrimitiveBag.stg.
|
| Modifier and Type | Method and Description |
|---|---|
default MutableDoubleCollection |
MutableCollection.collectDouble(DoubleFunction<? super T> doubleFunction)
Returns a new primitive
double iterable with the results of applying the specified function on each element
of the source collection. |
| Modifier and Type | Method and Description |
|---|---|
MutableDoubleCollection |
MutableDoubleCollection.asSynchronized() |
MutableDoubleCollection |
MutableDoubleCollection.asUnmodifiable() |
default MutableDoubleCollection |
MutableDoubleCollection.newEmpty()
Creates a new empty mutable version of the same collection type.
|
MutableDoubleCollection |
MutableDoubleCollection.reject(DoublePredicate predicate) |
MutableDoubleCollection |
MutableDoubleCollection.select(DoublePredicate predicate) |
default MutableDoubleCollection |
MutableDoubleCollection.tap(DoubleProcedure procedure) |
MutableDoubleCollection |
MutableDoubleCollection.with(double element) |
MutableDoubleCollection |
MutableDoubleCollection.withAll(DoubleIterable elements) |
MutableDoubleCollection |
MutableDoubleCollection.without(double element) |
MutableDoubleCollection |
MutableDoubleCollection.withoutAll(DoubleIterable elements) |
| Modifier and Type | Interface and Description |
|---|---|
interface |
MutableDoubleList
This file was automatically generated from template file mutablePrimitiveList.stg.
|
| Modifier and Type | Method and Description |
|---|---|
MutableDoubleCollection |
MutableObjectDoubleMap.reject(DoublePredicate predicate) |
MutableDoubleCollection |
MutableObjectDoubleMap.select(DoublePredicate predicate) |
MutableDoubleCollection |
DoubleValuesMap.values()
Returns the values in this map as a separate collection.
|
MutableDoubleCollection |
ObjectDoubleMap.values()
Returns the values in this map as a separate collection.
|
| Modifier and Type | Method and Description |
|---|---|
default <R extends MutableDoubleCollection> |
OrderedDoubleIterable.rejectWithIndex(DoubleIntPredicate predicate,
R target)
Returns a new MutableDoubleCollection excluding all elements with corresponding indexes matching the specified predicate.
|
default <R extends MutableDoubleCollection> |
OrderedDoubleIterable.selectWithIndex(DoubleIntPredicate predicate,
R target)
Returns a new MutableDoubleCollection including all elements with corresponding indexes matching the specified predicate.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
MutableDoubleSet
This file was automatically generated from template file mutablePrimitiveSet.stg.
|
Copyright © 2004–2023. All rights reserved.