| 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.factory.bag.primitive | |
| org.eclipse.collections.api.factory.list.primitive |
This package contains factory API for creating immutable primitive list instances.
|
| org.eclipse.collections.api.factory.set.primitive |
This package contains factory API for creating primitive set instances.
|
| org.eclipse.collections.api.factory.stack.primitive |
This package contains factory API for creating primitive stack instances.
|
| 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 | Interface and Description |
|---|---|
interface |
LazyDoubleIterable
This file was automatically generated from template file lazyPrimitiveIterable.stg.
|
| Modifier and Type | Method and Description |
|---|---|
DoubleIterable |
RichIterable.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. |
DoubleIterable |
DoubleIterable.reject(DoublePredicate predicate)
Returns a new DoubleIterable with all of the elements in the DoubleIterable that
return false for the specified 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 DoubleIterable |
DoubleIterable.tap(DoubleProcedure procedure) |
| Modifier and Type | Method and Description |
|---|---|
default RichIterable<DoubleIterable> |
DoubleIterable.chunk(int size)
Partitions elements in fixed size chunks.
|
| Modifier and Type | Method and Description |
|---|---|
default boolean |
DoubleIterable.containsAll(DoubleIterable source)
Returns true if all of the values specified in the source DoubleIterable are contained
in the DoubleIterable, and false if they are not.
|
default boolean |
DoubleIterable.containsAny(DoubleIterable source)
Returns true if any of the values specified in the source DoubleIterable are contained
in the DoubleIterable, and false if they are not.
|
default boolean |
DoubleIterable.containsNone(DoubleIterable source)
Returns true if none of the values specified in the source DoubleIterable are contained
in the DoubleIterable, and false if they are.
|
| Modifier and Type | Method and Description |
|---|---|
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.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
DoubleBag
This file was automatically generated from template file primitiveBag.stg.
|
interface |
ImmutableDoubleBag
This file was automatically generated from template file immutablePrimitiveBag.stg.
|
interface |
MutableDoubleBag
This file was automatically generated from template file mutablePrimitiveBag.stg.
|
| Modifier and Type | Method and Description |
|---|---|
ImmutableDoubleBag |
ImmutableDoubleBag.newWithAll(DoubleIterable elements) |
ImmutableDoubleBag |
ImmutableDoubleBag.newWithoutAll(DoubleIterable elements) |
MutableDoubleBag |
MutableDoubleBag.withAll(DoubleIterable elements) |
MutableDoubleBag |
MutableDoubleBag.withoutAll(DoubleIterable elements) |
| Modifier and Type | Interface and Description |
|---|---|
interface |
ImmutableDoubleCollection
This file was automatically generated from template file immutablePrimitiveCollection.stg.
|
interface |
MutableDoubleCollection
This file was automatically generated from template file mutablePrimitiveCollection.stg.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
MutableDoubleCollection.addAll(DoubleIterable source) |
ImmutableDoubleCollection |
ImmutableDoubleCollection.newWithAll(DoubleIterable elements) |
ImmutableDoubleCollection |
ImmutableDoubleCollection.newWithoutAll(DoubleIterable elements) |
boolean |
MutableDoubleCollection.removeAll(DoubleIterable source) |
boolean |
MutableDoubleCollection.retainAll(DoubleIterable elements) |
MutableDoubleCollection |
MutableDoubleCollection.withAll(DoubleIterable elements) |
MutableDoubleCollection |
MutableDoubleCollection.withoutAll(DoubleIterable elements) |
| Modifier and Type | Method and Description |
|---|---|
MutableDoubleBag |
MutableDoubleBagFactory.ofAll(DoubleIterable items)
|
ImmutableDoubleBag |
ImmutableDoubleBagFactory.ofAll(DoubleIterable items)
|
MutableDoubleBag |
MutableDoubleBagFactory.withAll(DoubleIterable items) |
ImmutableDoubleBag |
ImmutableDoubleBagFactory.withAll(DoubleIterable items) |
| Modifier and Type | Method and Description |
|---|---|
MutableDoubleList |
MutableDoubleListFactory.ofAll(DoubleIterable items)
|
ImmutableDoubleList |
ImmutableDoubleListFactory.ofAll(DoubleIterable items)
|
MutableDoubleList |
MutableDoubleListFactory.withAll(DoubleIterable items) |
ImmutableDoubleList |
ImmutableDoubleListFactory.withAll(DoubleIterable items) |
| Modifier and Type | Method and Description |
|---|---|
MutableDoubleSet |
MutableDoubleSetFactory.ofAll(DoubleIterable items)
|
ImmutableDoubleSet |
ImmutableDoubleSetFactory.ofAll(DoubleIterable items)
|
MutableDoubleSet |
MutableDoubleSetFactory.withAll(DoubleIterable items) |
ImmutableDoubleSet |
ImmutableDoubleSetFactory.withAll(DoubleIterable items) |
| Modifier and Type | Method and Description |
|---|---|
MutableDoubleStack |
MutableDoubleStackFactory.ofAll(DoubleIterable items)
|
ImmutableDoubleStack |
ImmutableDoubleStackFactory.ofAll(DoubleIterable items)
|
MutableDoubleStack |
MutableDoubleStackFactory.ofAllReversed(DoubleIterable items)
|
ImmutableDoubleStack |
ImmutableDoubleStackFactory.ofAllReversed(DoubleIterable items)
|
MutableDoubleStack |
MutableDoubleStackFactory.withAll(DoubleIterable items) |
ImmutableDoubleStack |
ImmutableDoubleStackFactory.withAll(DoubleIterable items) |
MutableDoubleStack |
MutableDoubleStackFactory.withAllReversed(DoubleIterable items) |
ImmutableDoubleStack |
ImmutableDoubleStackFactory.withAllReversed(DoubleIterable items) |
| Modifier and Type | Interface and Description |
|---|---|
interface |
DoubleList
This file was automatically generated from template file primitiveList.stg.
|
interface |
ImmutableDoubleList
This file was automatically generated from template file immutablePrimitiveList.stg.
|
interface |
MutableDoubleList
This file was automatically generated from template file mutablePrimitiveList.stg.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
MutableDoubleList.addAllAtIndex(int index,
DoubleIterable source) |
ImmutableDoubleList |
ImmutableDoubleList.newWithAll(DoubleIterable elements) |
ImmutableDoubleList |
ImmutableDoubleList.newWithoutAll(DoubleIterable elements) |
MutableDoubleList |
MutableDoubleList.withAll(DoubleIterable elements) |
MutableDoubleList |
MutableDoubleList.withoutAll(DoubleIterable elements) |
default ListIterable<DoubleDoublePair> |
DoubleList.zipDouble(DoubleIterable iterable)
Returns a
ListIterable formed from this DoubleList and another DoubleList by
combining corresponding elements in pairs. |
default MutableList<DoubleDoublePair> |
MutableDoubleList.zipDouble(DoubleIterable iterable)
Returns a
MutableList formed from this MutableDoubleList and another DoubleList by
combining corresponding elements in pairs. |
default ImmutableList<DoubleDoublePair> |
ImmutableDoubleList.zipDouble(DoubleIterable iterable)
Returns an
ImmutableList formed from this ImmutableDoubleList and another DoubleList by
combining corresponding elements in pairs. |
| Modifier and Type | Interface and Description |
|---|---|
interface |
ByteDoubleMap
This file was automatically generated from template file primitivePrimitiveMap.stg.
|
interface |
CharDoubleMap
This file was automatically generated from template file primitivePrimitiveMap.stg.
|
interface |
DoubleDoubleMap
This file was automatically generated from template file primitivePrimitiveMap.stg.
|
interface |
DoubleValuesMap
This file was automatically generated from template file primitiveValuesMap.stg.
|
interface |
FloatDoubleMap
This file was automatically generated from template file primitivePrimitiveMap.stg.
|
interface |
ImmutableByteDoubleMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.
|
interface |
ImmutableCharDoubleMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.
|
interface |
ImmutableDoubleDoubleMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.
|
interface |
ImmutableFloatDoubleMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.
|
interface |
ImmutableIntDoubleMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.
|
interface |
ImmutableLongDoubleMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.
|
interface |
ImmutableObjectDoubleMap<K>
This file was automatically generated from template file immutableObjectPrimitiveMap.stg.
|
interface |
ImmutableShortDoubleMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.
|
interface |
IntDoubleMap
This file was automatically generated from template file primitivePrimitiveMap.stg.
|
interface |
LongDoubleMap
This file was automatically generated from template file primitivePrimitiveMap.stg.
|
interface |
MutableByteDoubleMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.
|
interface |
MutableCharDoubleMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.
|
interface |
MutableDoubleDoubleMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.
|
interface |
MutableDoubleValuesMap
This file was automatically generated from template file mutablePrimitiveValuesMap.stg.
|
interface |
MutableFloatDoubleMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.
|
interface |
MutableIntDoubleMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.
|
interface |
MutableLongDoubleMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.
|
interface |
MutableObjectDoubleMap<K>
This file was automatically generated from template file mutableObjectPrimitiveMap.stg.
|
interface |
MutableShortDoubleMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.
|
interface |
ObjectDoubleMap<K>
This file was automatically generated from template file objectPrimitiveMap.stg.
|
interface |
ShortDoubleMap
This file was automatically generated from template file primitivePrimitiveMap.stg.
|
| Modifier and Type | Method and Description |
|---|---|
ImmutableDoubleBooleanMap |
ImmutableDoubleBooleanMap.newWithoutAllKeys(DoubleIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist),
and return the copy as a new immutable map.
|
ImmutableDoubleCharMap |
ImmutableDoubleCharMap.newWithoutAllKeys(DoubleIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist),
and return the copy as a new immutable map.
|
ImmutableDoubleByteMap |
ImmutableDoubleByteMap.newWithoutAllKeys(DoubleIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist),
and return the copy as a new immutable map.
|
ImmutableDoubleShortMap |
ImmutableDoubleShortMap.newWithoutAllKeys(DoubleIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist),
and return the copy as a new immutable map.
|
ImmutableDoubleLongMap |
ImmutableDoubleLongMap.newWithoutAllKeys(DoubleIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist),
and return the copy as a new immutable map.
|
ImmutableDoubleDoubleMap |
ImmutableDoubleDoubleMap.newWithoutAllKeys(DoubleIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist),
and return the copy as a new immutable map.
|
ImmutableDoubleFloatMap |
ImmutableDoubleFloatMap.newWithoutAllKeys(DoubleIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist),
and return the copy as a new immutable map.
|
ImmutableDoubleIntMap |
ImmutableDoubleIntMap.newWithoutAllKeys(DoubleIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist),
and return the copy as a new immutable map.
|
ImmutableDoubleObjectMap<V> |
ImmutableDoubleObjectMap.newWithoutAllKeys(DoubleIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist),
and return the copy as a new immutable map.
|
MutableDoubleBooleanMap |
MutableDoubleBooleanMap.withoutAllKeys(DoubleIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.
|
MutableDoubleCharMap |
MutableDoubleCharMap.withoutAllKeys(DoubleIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.
|
MutableDoubleByteMap |
MutableDoubleByteMap.withoutAllKeys(DoubleIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.
|
MutableDoubleShortMap |
MutableDoubleShortMap.withoutAllKeys(DoubleIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.
|
MutableDoubleLongMap |
MutableDoubleLongMap.withoutAllKeys(DoubleIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.
|
MutableDoubleDoubleMap |
MutableDoubleDoubleMap.withoutAllKeys(DoubleIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.
|
MutableDoubleFloatMap |
MutableDoubleFloatMap.withoutAllKeys(DoubleIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.
|
MutableDoubleIntMap |
MutableDoubleIntMap.withoutAllKeys(DoubleIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.
|
MutableDoubleObjectMap<V> |
MutableDoubleObjectMap.withoutAllKeys(DoubleIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
OrderedDoubleIterable
This file was automatically generated from template file orderedPrimitiveIterable.stg.
|
interface |
ReversibleDoubleIterable
This file was automatically generated from template file reversiblePrimitiveIterable.stg.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
DoubleSet
This file was automatically generated from template file primitiveSet.stg.
|
interface |
ImmutableDoubleSet
This file was automatically generated from template file immutablePrimitiveSet.stg.
|
interface |
MutableDoubleSet
This file was automatically generated from template file mutablePrimitiveSet.stg.
|
| Modifier and Type | Method and Description |
|---|---|
ImmutableDoubleSet |
ImmutableDoubleSet.newWithAll(DoubleIterable elements) |
ImmutableDoubleSet |
ImmutableDoubleSet.newWithoutAll(DoubleIterable elements) |
MutableDoubleSet |
MutableDoubleSet.withAll(DoubleIterable elements) |
MutableDoubleSet |
MutableDoubleSet.withoutAll(DoubleIterable elements) |
| Modifier and Type | Interface and Description |
|---|---|
interface |
DoubleStack
This file was automatically generated from template file primitiveStack.stg.
|
interface |
ImmutableDoubleStack
This file was automatically generated from template file immutablePrimitiveStack.stg.
|
interface |
MutableDoubleStack
This file was automatically generated from template file mutablePrimitiveStack.stg.
|
Copyright © 2004–2023. All rights reserved.