| 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 |
|---|---|
MutableIntBag |
IntIterable.toBag()
Converts the IntIterable to a new MutableIntBag.
|
| Modifier and Type | Method and Description |
|---|---|
MutableIntBag |
MutableBag.collectInt(IntFunction<? super T> intFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableIntBag |
MutableIntBag.asSynchronized() |
MutableIntBag |
MutableIntBag.asUnmodifiable() |
default MutableIntBag |
MutableIntBag.newEmpty()
Creates a new empty mutable version of the same Bag type.
|
MutableIntBag |
MutableIntBag.reject(IntPredicate predicate) |
MutableIntBag |
MutableIntBag.select(IntPredicate predicate) |
MutableIntBag |
MutableIntBag.selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.
|
default MutableIntBag |
MutableIntBag.selectDuplicates()
Returns all elements of the bag that have more than one occurrence.
|
default MutableIntBag |
MutableIntBag.tap(IntProcedure procedure) |
MutableIntBag |
MutableIntBag.with(int element) |
MutableIntBag |
MutableIntBag.withAll(IntIterable elements) |
MutableIntBag |
MutableIntBag.without(int element) |
MutableIntBag |
MutableIntBag.withoutAll(IntIterable elements) |
| Modifier and Type | Method and Description |
|---|---|
MutableIntBag |
MutableIntBagFactory.empty() |
MutableIntBag |
MutableIntBagFactory.of()
Same as
MutableIntBagFactory.empty(). |
MutableIntBag |
MutableIntBagFactory.of(int... items)
Same as
MutableIntBagFactory.with(int[]). |
MutableIntBag |
MutableIntBagFactory.ofAll(IntIterable items)
|
MutableIntBag |
MutableIntBagFactory.ofAll(IntStream items) |
MutableIntBag |
MutableIntBagFactory.ofAll(Iterable<Integer> iterable)
|
MutableIntBag |
MutableIntBagFactory.with()
Same as
MutableIntBagFactory.empty(). |
MutableIntBag |
MutableIntBagFactory.with(int... items) |
MutableIntBag |
MutableIntBagFactory.withAll(IntIterable items) |
MutableIntBag |
MutableIntBagFactory.withAll(IntStream items) |
MutableIntBag |
MutableIntBagFactory.withAll(Iterable<Integer> iterable) |
| Modifier and Type | Method and Description |
|---|---|
MutableIntBag |
MutableMap.collectInt(IntFunction<? super V> intFunction) |
| Modifier and Type | Method and Description |
|---|---|
MutableIntBag |
MutablePrimitiveObjectMap.collectInt(IntFunction<? super V> intFunction) |
MutableIntBag |
MutableIntValuesMap.reject(IntPredicate predicate) |
MutableIntBag |
MutableIntValuesMap.select(IntPredicate predicate) |
Copyright © 2004–2021. All rights reserved.