| 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.factory.set.primitive |
This package contains factory API for creating primitive set instances.
|
| 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.set |
This package contains interfaces for set API which enhance the performance and functionality of
Set. |
| org.eclipse.collections.api.set.primitive |
This package contains API for mutable and immutable primitive sets.
|
| Modifier and Type | Method and Description |
|---|---|
MutableDoubleSet |
DoubleIterable.toSet()
Converts the DoubleIterable to a new MutableDoubleSet.
|
| Modifier and Type | Method and Description |
|---|---|
MutableDoubleSet |
MutableDoubleBag.selectUnique()
Returns all elements of the bag that have exactly one occurrence.
|
| Modifier and Type | Method and Description |
|---|---|
MutableDoubleSet |
MutableDoubleSetFactory.empty() |
MutableDoubleSet |
MutableDoubleSetFactory.of()
Same as
MutableDoubleSetFactory.empty(). |
MutableDoubleSet |
MutableDoubleSetFactory.of(double... items)
|
MutableDoubleSet |
MutableDoubleSetFactory.ofAll(DoubleIterable items)
|
MutableDoubleSet |
MutableDoubleSetFactory.ofAll(DoubleStream items) |
MutableDoubleSet |
MutableDoubleSetFactory.ofAll(Iterable<Double> iterable)
|
MutableDoubleSet |
MutableDoubleSetFactory.with()
Same as
MutableDoubleSetFactory.empty(). |
MutableDoubleSet |
MutableDoubleSetFactory.with(double... items) |
MutableDoubleSet |
MutableDoubleSetFactory.withAll(DoubleIterable items) |
MutableDoubleSet |
MutableDoubleSetFactory.withAll(DoubleStream items) |
MutableDoubleSet |
MutableDoubleSetFactory.withAll(Iterable<Double> iterable) |
default MutableDoubleSet |
MutableDoubleSetFactory.withInitialCapacity(int capacity)
Same as
MutableDoubleSetFactory.empty(). |
| Modifier and Type | Method and Description |
|---|---|
MutableDoubleSet |
DoubleBooleanMap.keySet()
Returns a set containing all the keys in this map.
|
MutableDoubleSet |
DoubleCharMap.keySet()
Returns a set containing all the keys in this map.
|
MutableDoubleSet |
DoubleByteMap.keySet()
Returns a set containing all the keys in this map.
|
MutableDoubleSet |
DoubleShortMap.keySet()
Returns a set containing all the keys in this map.
|
MutableDoubleSet |
DoubleLongMap.keySet()
Returns a set containing all the keys in this map.
|
MutableDoubleSet |
DoubleDoubleMap.keySet()
Returns a set containing all the keys in this map.
|
MutableDoubleSet |
DoubleFloatMap.keySet()
Returns a set containing all the keys in this map.
|
MutableDoubleSet |
DoubleIntMap.keySet()
Returns a set containing all the keys in this map.
|
MutableDoubleSet |
DoubleObjectMap.keySet()
Returns a set containing all the keys in this map.
|
| Modifier and Type | Method and Description |
|---|---|
default MutableDoubleSet |
MutableSet.collectDouble(DoubleFunction<? super T> doubleFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableDoubleSet |
MutableDoubleSet.asSynchronized() |
MutableDoubleSet |
MutableDoubleSet.asUnmodifiable() |
default MutableDoubleSet |
MutableDoubleSet.difference(DoubleSet set)
Returns the set of all members of
this that are not members of set. |
default MutableDoubleSet |
MutableDoubleSet.intersect(DoubleSet set)
Returns the set of all objects that are members of both
this and set. |
default MutableDoubleSet |
MutableDoubleSet.newEmpty()
Creates a new empty mutable version of the same Set type.
|
MutableDoubleSet |
MutableDoubleSet.reject(DoublePredicate predicate) |
MutableDoubleSet |
MutableDoubleSet.select(DoublePredicate predicate) |
default MutableDoubleSet |
MutableDoubleSet.symmetricDifference(DoubleSet set)
Returns the set of all objects that are a member of exactly one of
this and set (elements which
are in one of the sets, but not in both). |
default MutableDoubleSet |
MutableDoubleSet.tap(DoubleProcedure procedure) |
default MutableDoubleSet |
MutableDoubleSet.union(DoubleSet set) |
MutableDoubleSet |
MutableDoubleSet.with(double element) |
MutableDoubleSet |
MutableDoubleSet.withAll(DoubleIterable elements) |
MutableDoubleSet |
MutableDoubleSet.without(double element) |
MutableDoubleSet |
MutableDoubleSet.withoutAll(DoubleIterable elements) |
Copyright © 2004–2023. All rights reserved.