| 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 |
|---|---|
MutableDoubleBag |
DoubleIterable.toBag()
Converts the DoubleIterable to a new MutableDoubleBag.
|
| Modifier and Type | Method and Description |
|---|---|
MutableDoubleBag |
MutableBag.collectDouble(DoubleFunction<? super T> doubleFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableDoubleBag |
MutableDoubleBag.asSynchronized() |
MutableDoubleBag |
MutableDoubleBag.asUnmodifiable() |
default MutableDoubleBag |
MutableDoubleBag.newEmpty()
Creates a new empty mutable version of the same Bag type.
|
MutableDoubleBag |
MutableDoubleBag.reject(DoublePredicate predicate) |
MutableDoubleBag |
MutableDoubleBag.select(DoublePredicate predicate) |
MutableDoubleBag |
MutableDoubleBag.selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.
|
default MutableDoubleBag |
MutableDoubleBag.selectDuplicates()
Returns all elements of the bag that have more than one occurrence.
|
default MutableDoubleBag |
MutableDoubleBag.tap(DoubleProcedure procedure) |
MutableDoubleBag |
MutableDoubleBag.with(double element) |
MutableDoubleBag |
MutableDoubleBag.withAll(DoubleIterable elements) |
MutableDoubleBag |
MutableDoubleBag.without(double element) |
MutableDoubleBag |
MutableDoubleBag.withoutAll(DoubleIterable elements) |
| Modifier and Type | Method and Description |
|---|---|
MutableDoubleBag |
MutableDoubleBagFactory.empty() |
MutableDoubleBag |
MutableDoubleBagFactory.of()
Same as
MutableDoubleBagFactory.empty(). |
MutableDoubleBag |
MutableDoubleBagFactory.of(double... items)
|
MutableDoubleBag |
MutableDoubleBagFactory.ofAll(DoubleIterable items)
|
MutableDoubleBag |
MutableDoubleBagFactory.ofAll(DoubleStream items) |
MutableDoubleBag |
MutableDoubleBagFactory.ofAll(Iterable<Double> iterable)
|
MutableDoubleBag |
MutableDoubleBagFactory.with()
Same as
MutableDoubleBagFactory.empty(). |
MutableDoubleBag |
MutableDoubleBagFactory.with(double... items) |
MutableDoubleBag |
MutableDoubleBagFactory.withAll(DoubleIterable items) |
MutableDoubleBag |
MutableDoubleBagFactory.withAll(DoubleStream items) |
MutableDoubleBag |
MutableDoubleBagFactory.withAll(Iterable<Double> iterable) |
| Modifier and Type | Method and Description |
|---|---|
MutableDoubleBag |
MutableMap.collectDouble(DoubleFunction<? super V> doubleFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableDoubleBag |
MutablePrimitiveObjectMap.collectDouble(DoubleFunction<? super V> doubleFunction) |
MutableDoubleBag |
MutableDoubleValuesMap.reject(DoublePredicate predicate) |
MutableDoubleBag |
MutableDoubleValuesMap.select(DoublePredicate predicate) |
Copyright © 2004–2021. All rights reserved.