| 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.set.primitive |
This package contains API for mutable and immutable primitive sets.
|
| Modifier and Type | Method and Description |
|---|---|
default <R extends MutableLongCollection> |
BooleanIterable.collectLong(BooleanToLongFunction function,
R target)
Returns the target
MutableLongCollection with the results of applying the specified function on each element
of the source collection. |
default <R extends MutableLongCollection> |
ByteIterable.collectLong(ByteToLongFunction function,
R target)
Returns the target
MutableLongCollection with the results of applying the specified function on each element
of the source collection. |
default <R extends MutableLongCollection> |
CharIterable.collectLong(CharToLongFunction function,
R target)
Returns the target
MutableLongCollection with the results of applying the specified function on each element
of the source collection. |
default <R extends MutableLongCollection> |
DoubleIterable.collectLong(DoubleToLongFunction function,
R target)
Returns the target
MutableLongCollection with the results of applying the specified function on each element
of the source collection. |
default <R extends MutableLongCollection> |
FloatIterable.collectLong(FloatToLongFunction function,
R target)
Returns the target
MutableLongCollection with the results of applying the specified function on each element
of the source collection. |
default <R extends MutableLongCollection> |
IntIterable.collectLong(IntToLongFunction function,
R target)
Returns the target
MutableLongCollection with the results of applying the specified function on each element
of the source collection. |
<R extends MutableLongCollection> |
RichIterable.collectLong(LongFunction<? super T> longFunction,
R target)
Same as
RichIterable.collectLong(LongFunction), except that the results are gathered into the specified target
collection. |
default <R extends MutableLongCollection> |
LongIterable.collectLong(LongToLongFunction function,
R target)
Returns the target
MutableLongCollection with the results of applying the specified function on each element
of the source collection. |
default <R extends MutableLongCollection> |
ShortIterable.collectLong(ShortToLongFunction function,
R target)
Returns the target
MutableLongCollection with the results of applying the specified function on each element
of the source collection. |
default <R extends MutableLongCollection> |
RichIterable.flatCollectLong(Function<? super T,? extends LongIterable> function,
R target)
Same as flatCollect, only the results are collected into the target collection.
|
default <R extends MutableLongCollection> |
LongIterable.reject(LongPredicate predicate,
R target)
Same as
LongIterable.reject(LongPredicate) , only the results are added to the target MutableLongCollection. |
default <R extends MutableLongCollection> |
LongIterable.select(LongPredicate predicate,
R target)
Same as
LongIterable.select(LongPredicate) , only the results are added to the target MutableLongCollection. |
| Modifier and Type | Interface and Description |
|---|---|
interface |
MutableLongBag
This file was automatically generated from template file mutablePrimitiveBag.stg.
|
| Modifier and Type | Method and Description |
|---|---|
MutableLongCollection |
MutableCollection.collectLong(LongFunction<? super T> longFunction)
Returns a new primitive
long iterable with the results of applying the specified function on each element
of the source collection. |
| Modifier and Type | Method and Description |
|---|---|
MutableLongCollection |
MutableLongCollection.asSynchronized() |
MutableLongCollection |
MutableLongCollection.asUnmodifiable() |
default MutableLongCollection |
MutableLongCollection.newEmpty()
Creates a new empty mutable version of the same collection type.
|
MutableLongCollection |
MutableLongCollection.reject(LongPredicate predicate) |
MutableLongCollection |
MutableLongCollection.select(LongPredicate predicate) |
default MutableLongCollection |
MutableLongCollection.tap(LongProcedure procedure) |
MutableLongCollection |
MutableLongCollection.with(long element) |
MutableLongCollection |
MutableLongCollection.withAll(LongIterable elements) |
MutableLongCollection |
MutableLongCollection.without(long element) |
MutableLongCollection |
MutableLongCollection.withoutAll(LongIterable elements) |
| Modifier and Type | Interface and Description |
|---|---|
interface |
MutableLongList
This file was automatically generated from template file mutablePrimitiveList.stg.
|
| Modifier and Type | Method and Description |
|---|---|
MutableLongCollection |
MutableObjectLongMap.reject(LongPredicate predicate) |
MutableLongCollection |
MutableObjectLongMap.select(LongPredicate predicate) |
MutableLongCollection |
LongValuesMap.values()
Returns the values in this map as a separate collection.
|
MutableLongCollection |
ObjectLongMap.values()
Returns the values in this map as a separate collection.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
MutableLongSet
This file was automatically generated from template file mutablePrimitiveSet.stg.
|
Copyright © 2004–2020. All rights reserved.