| 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.collection | |
| org.eclipse.collections.api.collection.primitive |
This package contains mutable and immutable primitive collection API.
|
| org.eclipse.collections.api.list.primitive |
This package contains mutable and immutable primitive list API.
|
| 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.ordered.primitive | |
| org.eclipse.collections.api.set.primitive |
This package contains API for mutable and immutable primitive sets.
|
| Modifier and Type | Method and Description |
|---|---|
default <R extends MutableIntCollection> |
BooleanIterable.collectInt(BooleanToIntFunction function,
R target)
Returns the target
MutableIntCollection with the results of applying the specified function on each element
of the source collection. |
default <R extends MutableIntCollection> |
ByteIterable.collectInt(ByteToIntFunction function,
R target)
Returns the target
MutableIntCollection with the results of applying the specified function on each element
of the source collection. |
default <R extends MutableIntCollection> |
CharIterable.collectInt(CharToIntFunction function,
R target)
Returns the target
MutableIntCollection with the results of applying the specified function on each element
of the source collection. |
default <R extends MutableIntCollection> |
DoubleIterable.collectInt(DoubleToIntFunction function,
R target)
Returns the target
MutableIntCollection with the results of applying the specified function on each element
of the source collection. |
default <R extends MutableIntCollection> |
FloatIterable.collectInt(FloatToIntFunction function,
R target)
Returns the target
MutableIntCollection with the results of applying the specified function on each element
of the source collection. |
default <R extends MutableIntCollection> |
RichIterable.collectInt(IntFunction<? super T> intFunction,
R target)
Same as
RichIterable.collectInt(IntFunction), except that the results are gathered into the specified target
collection. |
default <R extends MutableIntCollection> |
IntIterable.collectInt(IntToIntFunction function,
R target)
Returns the target
MutableIntCollection with the results of applying the specified function on each element
of the source collection. |
default <R extends MutableIntCollection> |
LongIterable.collectInt(LongToIntFunction function,
R target)
Returns the target
MutableIntCollection with the results of applying the specified function on each element
of the source collection. |
default <R extends MutableIntCollection> |
ShortIterable.collectInt(ShortToIntFunction function,
R target)
Returns the target
MutableIntCollection with the results of applying the specified function on each element
of the source collection. |
default <R extends MutableIntCollection> |
RichIterable.flatCollectInt(Function<? super T,? extends IntIterable> function,
R target)
Same as flatCollect, only the results are collected into the target collection.
|
default <R extends MutableIntCollection> |
IntIterable.reject(IntPredicate predicate,
R target)
Same as
IntIterable.reject(IntPredicate) , only the results are added to the target MutableIntCollection. |
default <R extends MutableIntCollection> |
IntIterable.select(IntPredicate predicate,
R target)
Same as
IntIterable.select(IntPredicate) , only the results are added to the target MutableIntCollection. |
| Modifier and Type | Interface and Description |
|---|---|
interface |
MutableIntBag
This file was automatically generated from template file mutablePrimitiveBag.stg.
|
| Modifier and Type | Method and Description |
|---|---|
default MutableIntCollection |
MutableCollection.collectInt(IntFunction<? super T> intFunction)
Returns a new primitive
int iterable with the results of applying the specified function on each element
of the source collection. |
| Modifier and Type | Method and Description |
|---|---|
MutableIntCollection |
MutableIntCollection.asSynchronized() |
MutableIntCollection |
MutableIntCollection.asUnmodifiable() |
default MutableIntCollection |
MutableIntCollection.newEmpty()
Creates a new empty mutable version of the same collection type.
|
MutableIntCollection |
MutableIntCollection.reject(IntPredicate predicate) |
MutableIntCollection |
MutableIntCollection.select(IntPredicate predicate) |
default MutableIntCollection |
MutableIntCollection.tap(IntProcedure procedure) |
MutableIntCollection |
MutableIntCollection.with(int element) |
MutableIntCollection |
MutableIntCollection.withAll(IntIterable elements) |
MutableIntCollection |
MutableIntCollection.without(int element) |
MutableIntCollection |
MutableIntCollection.withoutAll(IntIterable elements) |
| Modifier and Type | Interface and Description |
|---|---|
interface |
MutableIntList
This file was automatically generated from template file mutablePrimitiveList.stg.
|
| Modifier and Type | Method and Description |
|---|---|
MutableIntCollection |
MutableObjectIntMap.reject(IntPredicate predicate) |
MutableIntCollection |
MutableObjectIntMap.select(IntPredicate predicate) |
MutableIntCollection |
IntValuesMap.values()
Returns the values in this map as a separate collection.
|
MutableIntCollection |
ObjectIntMap.values()
Returns the values in this map as a separate collection.
|
| Modifier and Type | Method and Description |
|---|---|
default <R extends MutableIntCollection> |
OrderedIntIterable.rejectWithIndex(IntIntPredicate predicate,
R target)
Returns a new MutableIntCollection excluding all elements with corresponding indexes matching the specified predicate.
|
default <R extends MutableIntCollection> |
OrderedIntIterable.selectWithIndex(IntIntPredicate predicate,
R target)
Returns a new MutableIntCollection including all elements with corresponding indexes matching the specified predicate.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
MutableIntSet
This file was automatically generated from template file mutablePrimitiveSet.stg.
|
Copyright © 2004–2023. All rights reserved.