| Package | Description |
|---|---|
| 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 |
|---|---|
ImmutableDoubleBag |
ImmutableBag.collectDouble(DoubleFunction<? super T> doubleFunction) |
| Modifier and Type | Method and Description |
|---|---|
ImmutableDoubleBag |
ImmutableDoubleBag.newWith(double element) |
ImmutableDoubleBag |
ImmutableDoubleBag.newWithAll(DoubleIterable elements) |
ImmutableDoubleBag |
ImmutableDoubleBag.newWithout(double element) |
ImmutableDoubleBag |
ImmutableDoubleBag.newWithoutAll(DoubleIterable elements) |
ImmutableDoubleBag |
ImmutableDoubleBag.reject(DoublePredicate predicate) |
ImmutableDoubleBag |
ImmutableDoubleBag.select(DoublePredicate predicate) |
ImmutableDoubleBag |
ImmutableDoubleBag.selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.
|
default ImmutableDoubleBag |
ImmutableDoubleBag.tap(DoubleProcedure procedure) |
ImmutableDoubleBag |
MutableDoubleBag.toImmutable()
Returns an immutable copy of this bag.
|
ImmutableDoubleBag |
DoubleBag.toImmutable()
Returns an immutable copy of this bag.
|
| Modifier and Type | Method and Description |
|---|---|
ImmutableDoubleBag |
ImmutableDoubleBagFactory.empty() |
ImmutableDoubleBag |
ImmutableDoubleBagFactory.of()
Same as
ImmutableDoubleBagFactory.empty(). |
ImmutableDoubleBag |
ImmutableDoubleBagFactory.of(double... items)
|
ImmutableDoubleBag |
ImmutableDoubleBagFactory.of(double one)
|
ImmutableDoubleBag |
ImmutableDoubleBagFactory.ofAll(DoubleIterable items)
|
ImmutableDoubleBag |
ImmutableDoubleBagFactory.ofAll(DoubleStream items) |
ImmutableDoubleBag |
ImmutableDoubleBagFactory.with()
Same as
ImmutableDoubleBagFactory.empty(). |
ImmutableDoubleBag |
ImmutableDoubleBagFactory.with(double... items) |
ImmutableDoubleBag |
ImmutableDoubleBagFactory.with(double one) |
ImmutableDoubleBag |
ImmutableDoubleBagFactory.withAll(DoubleIterable items) |
ImmutableDoubleBag |
ImmutableDoubleBagFactory.withAll(DoubleStream items) |
| Modifier and Type | Method and Description |
|---|---|
ImmutableDoubleBag |
ImmutableMap.collectDouble(DoubleFunction<? super V> doubleFunction) |
Copyright © 2004–2017. All rights reserved.