| Package | Description |
|---|---|
| org.eclipse.collections.api.bag.primitive |
This package contains API for Primitive Bags 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 |
|---|---|
DoubleSet |
DoubleBag.selectUnique()
Returns all elements of the bag that have exactly one occurrence.
|
| Modifier and Type | Method and Description |
|---|---|
DoubleSet |
UnsortedSetIterable.collectDouble(DoubleFunction<? super T> doubleFunction) |
| Modifier and Type | Interface and Description |
|---|---|
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 |
|---|---|
DoubleSet |
DoubleSet.difference(DoubleSet set)
Returns the set of all members of
this that are not members of set. |
DoubleSet |
DoubleSet.freeze()
Returns a frozen copy of this set.
|
DoubleSet |
MutableDoubleSet.freeze()
Returns a frozen copy of this set.
|
DoubleSet |
DoubleSet.intersect(DoubleSet set)
Returns the set of all objects that are members of both
this and set. |
DoubleSet |
DoubleSet.reject(DoublePredicate predicate) |
DoubleSet |
DoubleSet.select(DoublePredicate predicate) |
DoubleSet |
DoubleSet.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 DoubleSet |
DoubleSet.tap(DoubleProcedure procedure) |
DoubleSet |
DoubleSet.union(DoubleSet set) |
| Modifier and Type | Method and Description |
|---|---|
LazyIterable<DoubleDoublePair> |
DoubleSet.cartesianProduct(DoubleSet set)
Returns the set whose members are all possible ordered pairs (a, b) where a is a member of
this and b is a
member of set. |
DoubleSet |
DoubleSet.difference(DoubleSet set)
Returns the set of all members of
this that are not members of set. |
default MutableDoubleSet |
MutableDoubleSet.difference(DoubleSet set)
Returns the set of all members of
this that are not members of set. |
default ImmutableDoubleSet |
ImmutableDoubleSet.difference(DoubleSet set)
Returns the set of all members of
this that are not members of set. |
DoubleSet |
DoubleSet.intersect(DoubleSet set)
Returns the set of all objects that are members of both
this and set. |
default MutableDoubleSet |
MutableDoubleSet.intersect(DoubleSet set)
Returns the set of all objects that are members of both
this and set. |
default ImmutableDoubleSet |
ImmutableDoubleSet.intersect(DoubleSet set)
Returns the set of all objects that are members of both
this and set. |
default boolean |
DoubleSet.isProperSubsetOf(DoubleSet set)
Returns true if all the members of
this are also members of set and the
two sets are not equal. |
default boolean |
DoubleSet.isSubsetOf(DoubleSet set)
Returns true if all the members of
this are also members of set. |
DoubleSet |
DoubleSet.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.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 ImmutableDoubleSet |
ImmutableDoubleSet.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). |
DoubleSet |
DoubleSet.union(DoubleSet set) |
default MutableDoubleSet |
MutableDoubleSet.union(DoubleSet set) |
default ImmutableDoubleSet |
ImmutableDoubleSet.union(DoubleSet set) |
Copyright © 2004–2021. All rights reserved.