| 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 | |
| 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 |
|---|---|
MutableFloatSet |
FloatIterable.toSet()
Converts the FloatIterable to a new MutableFloatSet.
|
| Modifier and Type | Method and Description |
|---|---|
MutableFloatSet |
MutableFloatBag.selectUnique()
Returns all elements of the bag that have exactly one occurrence.
|
| Modifier and Type | Method and Description |
|---|---|
MutableFloatSet |
MutableFloatSetFactory.empty() |
MutableFloatSet |
MutableFloatSetFactory.of()
Same as
MutableFloatSetFactory.empty(). |
MutableFloatSet |
MutableFloatSetFactory.of(float... items)
Same as
MutableFloatSetFactory.with(float[]). |
MutableFloatSet |
MutableFloatSetFactory.ofAll(FloatIterable items)
|
MutableFloatSet |
MutableFloatSetFactory.ofAll(Iterable<Float> iterable)
|
MutableFloatSet |
MutableFloatSetFactory.with()
Same as
MutableFloatSetFactory.empty(). |
MutableFloatSet |
MutableFloatSetFactory.with(float... items) |
MutableFloatSet |
MutableFloatSetFactory.withAll(FloatIterable items) |
MutableFloatSet |
MutableFloatSetFactory.withAll(Iterable<Float> iterable) |
default MutableFloatSet |
MutableFloatSetFactory.withInitialCapacity(int capacity)
Same as
MutableFloatSetFactory.empty(). |
| Modifier and Type | Method and Description |
|---|---|
MutableFloatSet |
FloatBooleanMap.keySet()
Returns a set containing all the keys in this map.
|
MutableFloatSet |
FloatCharMap.keySet()
Returns a set containing all the keys in this map.
|
MutableFloatSet |
FloatByteMap.keySet()
Returns a set containing all the keys in this map.
|
MutableFloatSet |
FloatShortMap.keySet()
Returns a set containing all the keys in this map.
|
MutableFloatSet |
FloatLongMap.keySet()
Returns a set containing all the keys in this map.
|
MutableFloatSet |
FloatDoubleMap.keySet()
Returns a set containing all the keys in this map.
|
MutableFloatSet |
FloatFloatMap.keySet()
Returns a set containing all the keys in this map.
|
MutableFloatSet |
FloatIntMap.keySet()
Returns a set containing all the keys in this map.
|
MutableFloatSet |
FloatObjectMap.keySet()
Returns a set containing all the keys in this map.
|
| Modifier and Type | Method and Description |
|---|---|
MutableFloatSet |
MutableSet.collectFloat(FloatFunction<? super T> floatFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableFloatSet |
MutableFloatSet.asSynchronized() |
MutableFloatSet |
MutableFloatSet.asUnmodifiable() |
default MutableFloatSet |
MutableFloatSet.intersect(FloatSet set)
Returns the set of all objects that are members of both
this and set. |
default MutableFloatSet |
MutableFloatSet.newEmpty()
Creates a new empty mutable version of the same Set type.
|
MutableFloatSet |
MutableFloatSet.reject(FloatPredicate predicate) |
MutableFloatSet |
MutableFloatSet.select(FloatPredicate predicate) |
default MutableFloatSet |
MutableFloatSet.tap(FloatProcedure procedure) |
default MutableFloatSet |
MutableFloatSet.union(FloatSet set) |
MutableFloatSet |
MutableFloatSet.with(float element) |
MutableFloatSet |
MutableFloatSet.withAll(FloatIterable elements) |
MutableFloatSet |
MutableFloatSet.without(float element) |
MutableFloatSet |
MutableFloatSet.withoutAll(FloatIterable elements) |
Copyright © 2004–2020. All rights reserved.