| 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 |
|---|---|
<V> RichIterable<V> |
DoubleIterable.collect(DoubleToObjectFunction<? extends V> function)
Returns a new collection with the results of applying the specified function on each element of the source
collection.
|
<V> LazyIterable<V> |
LazyDoubleIterable.collect(DoubleToObjectFunction<? extends V> function) |
default <V,R extends Collection<V>> |
DoubleIterable.collect(DoubleToObjectFunction<? extends V> function,
R target)
Same as
DoubleIterable.collect(DoubleToObjectFunction) , only the results are added to the target Collection. |
<V> LazyIterable<V> |
LazyDoubleIterable.flatCollect(DoubleToObjectFunction<? extends Iterable<V>> function) |
default <V,R extends Collection<V>> |
DoubleIterable.flatCollect(DoubleToObjectFunction<? extends Iterable<V>> function,
R target)
flatCollect is a special case of DoubleIterable.collect(DoubleToObjectFunction). |
| Modifier and Type | Method and Description |
|---|---|
<V> Bag<V> |
DoubleBag.collect(DoubleToObjectFunction<? extends V> function) |
<V> MutableBag<V> |
MutableDoubleBag.collect(DoubleToObjectFunction<? extends V> function) |
<V> ImmutableBag<V> |
ImmutableDoubleBag.collect(DoubleToObjectFunction<? extends V> function) |
| Modifier and Type | Method and Description |
|---|---|
<V> MutableCollection<V> |
MutableDoubleCollection.collect(DoubleToObjectFunction<? extends V> function) |
<V> ImmutableCollection<V> |
ImmutableDoubleCollection.collect(DoubleToObjectFunction<? extends V> function) |
| Modifier and Type | Method and Description |
|---|---|
<V> ListIterable<V> |
DoubleList.collect(DoubleToObjectFunction<? extends V> function) |
<V> MutableList<V> |
MutableDoubleList.collect(DoubleToObjectFunction<? extends V> function) |
<V> ImmutableList<V> |
ImmutableDoubleList.collect(DoubleToObjectFunction<? extends V> function) |
default <T> MutableDoubleList |
MutableDoubleList.sortThisBy(DoubleToObjectFunction<T> function)
Sorts the internal data structure of this list based on the natural order of the key returned by
function. |
default <T> MutableDoubleList |
MutableDoubleList.sortThisBy(DoubleToObjectFunction<T> function,
Comparator<? super T> comparator)
Sorts the internal data structure of this list based on the key returned by
function using the provided comparator. |
| Modifier and Type | Method and Description |
|---|---|
<V> Bag<V> |
DoubleValuesMap.collect(DoubleToObjectFunction<? extends V> function) |
<V> MutableBag<V> |
MutableDoubleValuesMap.collect(DoubleToObjectFunction<? extends V> function) |
<V> MutableCollection<V> |
MutableObjectDoubleMap.collect(DoubleToObjectFunction<? extends V> function) |
<V> ImmutableBag<V> |
ImmutableCharDoubleMap.collect(DoubleToObjectFunction<? extends V> function) |
<V> ImmutableBag<V> |
ImmutableByteDoubleMap.collect(DoubleToObjectFunction<? extends V> function) |
<V> ImmutableBag<V> |
ImmutableShortDoubleMap.collect(DoubleToObjectFunction<? extends V> function) |
<V> ImmutableBag<V> |
ImmutableLongDoubleMap.collect(DoubleToObjectFunction<? extends V> function) |
<V> ImmutableBag<V> |
ImmutableDoubleDoubleMap.collect(DoubleToObjectFunction<? extends V> function) |
<V> ImmutableBag<V> |
ImmutableFloatDoubleMap.collect(DoubleToObjectFunction<? extends V> function) |
<V> ImmutableBag<V> |
ImmutableIntDoubleMap.collect(DoubleToObjectFunction<? extends V> function) |
<V> ImmutableCollection<V> |
ImmutableObjectDoubleMap.collect(DoubleToObjectFunction<? extends V> function) |
V |
MutableDoubleObjectMap.getIfAbsentPutWithKey(double key,
DoubleToObjectFunction<? extends V> function)
Retrieves the value associated with the key if one exists; if it does not,
associates the result of invoking the value function with the key.
|
| Modifier and Type | Method and Description |
|---|---|
<V> ReversibleIterable<V> |
ReversibleDoubleIterable.collect(DoubleToObjectFunction<? extends V> function) |
<V> OrderedIterable<V> |
OrderedDoubleIterable.collect(DoubleToObjectFunction<? extends V> function) |
| Modifier and Type | Method and Description |
|---|---|
<V> SetIterable<V> |
DoubleSet.collect(DoubleToObjectFunction<? extends V> function) |
<V> MutableSet<V> |
MutableDoubleSet.collect(DoubleToObjectFunction<? extends V> function) |
<V> ImmutableSet<V> |
ImmutableDoubleSet.collect(DoubleToObjectFunction<? extends V> function) |
| Modifier and Type | Method and Description |
|---|---|
<V> StackIterable<V> |
DoubleStack.collect(DoubleToObjectFunction<? extends V> function) |
<V> MutableStack<V> |
MutableDoubleStack.collect(DoubleToObjectFunction<? extends V> function) |
<V> ImmutableStack<V> |
ImmutableDoubleStack.collect(DoubleToObjectFunction<? extends V> function) |
Copyright © 2004–2020. All rights reserved.