| 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 |
|---|---|
FloatSet |
FloatBag.selectUnique()
Returns all elements of the bag that have exactly one occurrence.
|
| Modifier and Type | Method and Description |
|---|---|
FloatSet |
UnsortedSetIterable.collectFloat(FloatFunction<? super T> floatFunction) |
| Modifier and Type | Interface and Description |
|---|---|
interface |
ImmutableFloatSet
This file was automatically generated from template file immutablePrimitiveSet.stg.
|
interface |
MutableFloatSet
This file was automatically generated from template file mutablePrimitiveSet.stg.
|
| Modifier and Type | Method and Description |
|---|---|
FloatSet |
FloatSet.difference(FloatSet set)
Returns the set of all members of
this that are not members of set. |
FloatSet |
FloatSet.freeze()
Returns a frozen copy of this set.
|
FloatSet |
MutableFloatSet.freeze()
Returns a frozen copy of this set.
|
FloatSet |
FloatSet.intersect(FloatSet set)
Returns the set of all objects that are members of both
this and set. |
FloatSet |
FloatSet.reject(FloatPredicate predicate) |
FloatSet |
FloatSet.select(FloatPredicate predicate) |
FloatSet |
FloatSet.symmetricDifference(FloatSet 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 FloatSet |
FloatSet.tap(FloatProcedure procedure) |
FloatSet |
FloatSet.union(FloatSet set) |
| Modifier and Type | Method and Description |
|---|---|
LazyIterable<FloatFloatPair> |
FloatSet.cartesianProduct(FloatSet 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. |
FloatSet |
FloatSet.difference(FloatSet set)
Returns the set of all members of
this that are not members of set. |
default MutableFloatSet |
MutableFloatSet.difference(FloatSet set)
Returns the set of all members of
this that are not members of set. |
default ImmutableFloatSet |
ImmutableFloatSet.difference(FloatSet set)
Returns the set of all members of
this that are not members of set. |
FloatSet |
FloatSet.intersect(FloatSet set)
Returns the set of all objects that are members of both
this and set. |
default MutableFloatSet |
MutableFloatSet.intersect(FloatSet set)
Returns the set of all objects that are members of both
this and set. |
default ImmutableFloatSet |
ImmutableFloatSet.intersect(FloatSet set)
Returns the set of all objects that are members of both
this and set. |
default boolean |
FloatSet.isProperSubsetOf(FloatSet set)
Returns true if all the members of
this are also members of set and the
two sets are not equal. |
default boolean |
FloatSet.isSubsetOf(FloatSet set)
Returns true if all the members of
this are also members of set. |
FloatSet |
FloatSet.symmetricDifference(FloatSet 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 MutableFloatSet |
MutableFloatSet.symmetricDifference(FloatSet 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 ImmutableFloatSet |
ImmutableFloatSet.symmetricDifference(FloatSet 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). |
FloatSet |
FloatSet.union(FloatSet set) |
default MutableFloatSet |
MutableFloatSet.union(FloatSet set) |
default ImmutableFloatSet |
ImmutableFloatSet.union(FloatSet set) |
Copyright © 2004–2021. All rights reserved.