| Package | Description |
|---|---|
| org.eclipse.collections.api |
This package contains interfaces for Eclipse Collections API.
|
| org.eclipse.collections.api.bag |
This package contains interfaces for Bag API.
|
| org.eclipse.collections.api.bag.primitive |
This package contains API for Primitive Bags with Mutable and Immutable variants.
|
| org.eclipse.collections.api.factory.bag.primitive | |
| org.eclipse.collections.api.map |
This package contains interfaces for map API which enhance the performance and functionality of
Map |
| 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.
|
| Modifier and Type | Method and Description |
|---|---|
MutableFloatBag |
FloatIterable.toBag()
Converts the FloatIterable to a new MutableFloatBag.
|
| Modifier and Type | Method and Description |
|---|---|
default MutableFloatBag |
MutableBag.collectFloat(FloatFunction<? super T> floatFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableFloatBag |
MutableFloatBag.asSynchronized() |
MutableFloatBag |
MutableFloatBag.asUnmodifiable() |
default MutableFloatBag |
MutableFloatBag.newEmpty()
Creates a new empty mutable version of the same Bag type.
|
MutableFloatBag |
MutableFloatBag.reject(FloatPredicate predicate) |
MutableFloatBag |
MutableFloatBag.select(FloatPredicate predicate) |
MutableFloatBag |
MutableFloatBag.selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.
|
default MutableFloatBag |
MutableFloatBag.selectDuplicates()
Returns all elements of the bag that have more than one occurrence.
|
default MutableFloatBag |
MutableFloatBag.tap(FloatProcedure procedure) |
MutableFloatBag |
MutableFloatBag.with(float element) |
MutableFloatBag |
MutableFloatBag.withAll(FloatIterable elements) |
MutableFloatBag |
MutableFloatBag.without(float element) |
MutableFloatBag |
MutableFloatBag.withoutAll(FloatIterable elements) |
| Modifier and Type | Method and Description |
|---|---|
MutableFloatBag |
MutableFloatBagFactory.empty() |
MutableFloatBag |
MutableFloatBagFactory.of()
Same as
MutableFloatBagFactory.empty(). |
MutableFloatBag |
MutableFloatBagFactory.of(float... items)
Same as
MutableFloatBagFactory.with(float[]). |
MutableFloatBag |
MutableFloatBagFactory.ofAll(FloatIterable items)
|
MutableFloatBag |
MutableFloatBagFactory.ofAll(Iterable<Float> iterable)
|
MutableFloatBag |
MutableFloatBagFactory.with()
Same as
MutableFloatBagFactory.empty(). |
MutableFloatBag |
MutableFloatBagFactory.with(float... items) |
MutableFloatBag |
MutableFloatBagFactory.withAll(FloatIterable items) |
MutableFloatBag |
MutableFloatBagFactory.withAll(Iterable<Float> iterable) |
| Modifier and Type | Method and Description |
|---|---|
MutableFloatBag |
MutableMap.collectFloat(FloatFunction<? super V> floatFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableFloatBag |
MutablePrimitiveObjectMap.collectFloat(FloatFunction<? super V> floatFunction) |
MutableFloatBag |
MutableFloatValuesMap.reject(FloatPredicate predicate) |
MutableFloatBag |
MutableFloatValuesMap.select(FloatPredicate predicate) |
Copyright © 2004–2022. All rights reserved.