| 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.primitive |
This package contains mutable and immutable primitive collection API.
|
| org.eclipse.collections.api.factory.bag.primitive | |
| org.eclipse.collections.api.factory.list.primitive |
This package contains factory API for creating immutable primitive list instances.
|
| org.eclipse.collections.api.factory.set.primitive |
This package contains factory API for creating primitive set instances.
|
| org.eclipse.collections.api.factory.stack.primitive |
This package contains factory API for creating primitive stack instances.
|
| 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.
|
| org.eclipse.collections.api.stack.primitive |
This package contains mutable and immutable primitive stack API.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
LazyIntIterable
This file was automatically generated from template file lazyPrimitiveIterable.stg.
|
| Modifier and Type | Method and Description |
|---|---|
IntIterable |
RichIterable.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. |
IntIterable |
IntIterable.reject(IntPredicate predicate)
Returns a new IntIterable with all of the elements in the IntIterable that
return false for the specified predicate.
|
IntIterable |
IntIterable.select(IntPredicate predicate)
Returns a new IntIterable with all of the elements in the IntIterable that
return true for the specified predicate.
|
default IntIterable |
IntIterable.tap(IntProcedure procedure) |
| Modifier and Type | Method and Description |
|---|---|
default RichIterable<IntIterable> |
IntIterable.chunk(int size)
Partitions elements in fixed size chunks.
|
| Modifier and Type | Method and Description |
|---|---|
default boolean |
IntIterable.containsAll(IntIterable source)
Returns true if all of the values specified in the source IntIterable are contained
in the IntIterable, and false if they are not.
|
default boolean |
IntIterable.containsAny(IntIterable source)
Returns true if any of the values specified in the source IntIterable are contained
in the IntIterable, and false if they are not.
|
default boolean |
IntIterable.containsNone(IntIterable source)
Returns true if none of the values specified in the source IntIterable are contained
in the IntIterable, and false if they are.
|
| Modifier and Type | Method and Description |
|---|---|
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.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
ImmutableIntBag
This file was automatically generated from template file immutablePrimitiveBag.stg.
|
interface |
IntBag
This file was automatically generated from template file primitiveBag.stg.
|
interface |
MutableIntBag
This file was automatically generated from template file mutablePrimitiveBag.stg.
|
| Modifier and Type | Method and Description |
|---|---|
ImmutableIntBag |
ImmutableIntBag.newWithAll(IntIterable elements) |
ImmutableIntBag |
ImmutableIntBag.newWithoutAll(IntIterable elements) |
MutableIntBag |
MutableIntBag.withAll(IntIterable elements) |
MutableIntBag |
MutableIntBag.withoutAll(IntIterable elements) |
| Modifier and Type | Interface and Description |
|---|---|
interface |
ImmutableIntCollection
This file was automatically generated from template file immutablePrimitiveCollection.stg.
|
interface |
MutableIntCollection
This file was automatically generated from template file mutablePrimitiveCollection.stg.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
MutableIntCollection.addAll(IntIterable source) |
ImmutableIntCollection |
ImmutableIntCollection.newWithAll(IntIterable elements) |
ImmutableIntCollection |
ImmutableIntCollection.newWithoutAll(IntIterable elements) |
boolean |
MutableIntCollection.removeAll(IntIterable source) |
boolean |
MutableIntCollection.retainAll(IntIterable elements) |
MutableIntCollection |
MutableIntCollection.withAll(IntIterable elements) |
MutableIntCollection |
MutableIntCollection.withoutAll(IntIterable elements) |
| Modifier and Type | Method and Description |
|---|---|
MutableIntBag |
MutableIntBagFactory.ofAll(IntIterable items)
|
ImmutableIntBag |
ImmutableIntBagFactory.ofAll(IntIterable items)
|
MutableIntBag |
MutableIntBagFactory.withAll(IntIterable items) |
ImmutableIntBag |
ImmutableIntBagFactory.withAll(IntIterable items) |
| Modifier and Type | Method and Description |
|---|---|
MutableIntList |
MutableIntListFactory.ofAll(IntIterable items)
|
ImmutableIntList |
ImmutableIntListFactory.ofAll(IntIterable items)
|
MutableIntList |
MutableIntListFactory.withAll(IntIterable items) |
ImmutableIntList |
ImmutableIntListFactory.withAll(IntIterable items) |
| Modifier and Type | Method and Description |
|---|---|
MutableIntSet |
MutableIntSetFactory.ofAll(IntIterable items)
|
ImmutableIntSet |
ImmutableIntSetFactory.ofAll(IntIterable items)
|
MutableIntSet |
MutableIntSetFactory.withAll(IntIterable items) |
ImmutableIntSet |
ImmutableIntSetFactory.withAll(IntIterable items) |
| Modifier and Type | Method and Description |
|---|---|
MutableIntStack |
MutableIntStackFactory.ofAll(IntIterable items)
|
ImmutableIntStack |
ImmutableIntStackFactory.ofAll(IntIterable items)
|
MutableIntStack |
MutableIntStackFactory.ofAllReversed(IntIterable items)
|
ImmutableIntStack |
ImmutableIntStackFactory.ofAllReversed(IntIterable items)
|
MutableIntStack |
MutableIntStackFactory.withAll(IntIterable items) |
ImmutableIntStack |
ImmutableIntStackFactory.withAll(IntIterable items) |
MutableIntStack |
MutableIntStackFactory.withAllReversed(IntIterable items) |
ImmutableIntStack |
ImmutableIntStackFactory.withAllReversed(IntIterable items) |
| Modifier and Type | Interface and Description |
|---|---|
interface |
ImmutableIntList
This file was automatically generated from template file immutablePrimitiveList.stg.
|
interface |
IntList
This file was automatically generated from template file primitiveList.stg.
|
interface |
MutableIntList
This file was automatically generated from template file mutablePrimitiveList.stg.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
MutableIntList.addAllAtIndex(int index,
IntIterable source) |
ImmutableIntList |
ImmutableIntList.newWithAll(IntIterable elements) |
ImmutableIntList |
ImmutableIntList.newWithoutAll(IntIterable elements) |
MutableIntList |
MutableIntList.withAll(IntIterable elements) |
MutableIntList |
MutableIntList.withoutAll(IntIterable elements) |
default ListIterable<IntIntPair> |
IntList.zipInt(IntIterable iterable)
Returns a
ListIterable formed from this IntList and another IntList by
combining corresponding elements in pairs. |
default MutableList<IntIntPair> |
MutableIntList.zipInt(IntIterable iterable)
Returns a
MutableList formed from this MutableIntList and another IntList by
combining corresponding elements in pairs. |
default ImmutableList<IntIntPair> |
ImmutableIntList.zipInt(IntIterable iterable)
Returns an
ImmutableList formed from this ImmutableIntList and another IntList by
combining corresponding elements in pairs. |
| Modifier and Type | Interface and Description |
|---|---|
interface |
ByteIntMap
This file was automatically generated from template file primitivePrimitiveMap.stg.
|
interface |
CharIntMap
This file was automatically generated from template file primitivePrimitiveMap.stg.
|
interface |
DoubleIntMap
This file was automatically generated from template file primitivePrimitiveMap.stg.
|
interface |
FloatIntMap
This file was automatically generated from template file primitivePrimitiveMap.stg.
|
interface |
ImmutableByteIntMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.
|
interface |
ImmutableCharIntMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.
|
interface |
ImmutableDoubleIntMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.
|
interface |
ImmutableFloatIntMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.
|
interface |
ImmutableIntIntMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.
|
interface |
ImmutableLongIntMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.
|
interface |
ImmutableObjectIntMap<K>
This file was automatically generated from template file immutableObjectPrimitiveMap.stg.
|
interface |
ImmutableShortIntMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.
|
interface |
IntIntMap
This file was automatically generated from template file primitivePrimitiveMap.stg.
|
interface |
IntValuesMap
This file was automatically generated from template file primitiveValuesMap.stg.
|
interface |
LongIntMap
This file was automatically generated from template file primitivePrimitiveMap.stg.
|
interface |
MutableByteIntMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.
|
interface |
MutableCharIntMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.
|
interface |
MutableDoubleIntMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.
|
interface |
MutableFloatIntMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.
|
interface |
MutableIntIntMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.
|
interface |
MutableIntValuesMap
This file was automatically generated from template file mutablePrimitiveValuesMap.stg.
|
interface |
MutableLongIntMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.
|
interface |
MutableObjectIntMap<K>
This file was automatically generated from template file mutableObjectPrimitiveMap.stg.
|
interface |
MutableShortIntMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.
|
interface |
ObjectIntMap<K>
This file was automatically generated from template file objectPrimitiveMap.stg.
|
interface |
ShortIntMap
This file was automatically generated from template file primitivePrimitiveMap.stg.
|
| Modifier and Type | Method and Description |
|---|---|
ImmutableIntBooleanMap |
ImmutableIntBooleanMap.newWithoutAllKeys(IntIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist),
and return the copy as a new immutable map.
|
ImmutableIntCharMap |
ImmutableIntCharMap.newWithoutAllKeys(IntIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist),
and return the copy as a new immutable map.
|
ImmutableIntByteMap |
ImmutableIntByteMap.newWithoutAllKeys(IntIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist),
and return the copy as a new immutable map.
|
ImmutableIntShortMap |
ImmutableIntShortMap.newWithoutAllKeys(IntIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist),
and return the copy as a new immutable map.
|
ImmutableIntLongMap |
ImmutableIntLongMap.newWithoutAllKeys(IntIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist),
and return the copy as a new immutable map.
|
ImmutableIntDoubleMap |
ImmutableIntDoubleMap.newWithoutAllKeys(IntIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist),
and return the copy as a new immutable map.
|
ImmutableIntFloatMap |
ImmutableIntFloatMap.newWithoutAllKeys(IntIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist),
and return the copy as a new immutable map.
|
ImmutableIntIntMap |
ImmutableIntIntMap.newWithoutAllKeys(IntIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist),
and return the copy as a new immutable map.
|
ImmutableIntObjectMap<V> |
ImmutableIntObjectMap.newWithoutAllKeys(IntIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist),
and return the copy as a new immutable map.
|
MutableIntBooleanMap |
MutableIntBooleanMap.withoutAllKeys(IntIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.
|
MutableIntCharMap |
MutableIntCharMap.withoutAllKeys(IntIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.
|
MutableIntByteMap |
MutableIntByteMap.withoutAllKeys(IntIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.
|
MutableIntShortMap |
MutableIntShortMap.withoutAllKeys(IntIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.
|
MutableIntLongMap |
MutableIntLongMap.withoutAllKeys(IntIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.
|
MutableIntDoubleMap |
MutableIntDoubleMap.withoutAllKeys(IntIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.
|
MutableIntFloatMap |
MutableIntFloatMap.withoutAllKeys(IntIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.
|
MutableIntIntMap |
MutableIntIntMap.withoutAllKeys(IntIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.
|
MutableIntObjectMap<V> |
MutableIntObjectMap.withoutAllKeys(IntIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
OrderedIntIterable
This file was automatically generated from template file orderedPrimitiveIterable.stg.
|
interface |
ReversibleIntIterable
This file was automatically generated from template file reversiblePrimitiveIterable.stg.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
ImmutableIntSet
This file was automatically generated from template file immutablePrimitiveSet.stg.
|
interface |
IntSet
This file was automatically generated from template file primitiveSet.stg.
|
interface |
MutableIntSet
This file was automatically generated from template file mutablePrimitiveSet.stg.
|
| Modifier and Type | Method and Description |
|---|---|
ImmutableIntSet |
ImmutableIntSet.newWithAll(IntIterable elements) |
ImmutableIntSet |
ImmutableIntSet.newWithoutAll(IntIterable elements) |
MutableIntSet |
MutableIntSet.withAll(IntIterable elements) |
MutableIntSet |
MutableIntSet.withoutAll(IntIterable elements) |
| Modifier and Type | Interface and Description |
|---|---|
interface |
ImmutableIntStack
This file was automatically generated from template file immutablePrimitiveStack.stg.
|
interface |
IntStack
This file was automatically generated from template file primitiveStack.stg.
|
interface |
MutableIntStack
This file was automatically generated from template file mutablePrimitiveStack.stg.
|
Copyright © 2004–2023. All rights reserved.