| 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.block.procedure |
This package contains interfaces for Procedure 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 |
| Modifier and Type | Method and Description |
|---|---|
void |
InternalIterable.forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure)
Deprecated.
in 6.0. Use
OrderedIterable.forEachWithIndex(ObjectIntProcedure) instead. |
| Modifier and Type | Method and Description |
|---|---|
void |
ParallelBag.forEachWithOccurrences(ObjectIntProcedure<? super T> procedure) |
void |
Bag.forEachWithOccurrences(ObjectIntProcedure<? super T> procedure)
For each distinct item, with the number of occurrences, execute the specified procedure.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
ObjectIntProcedure<T>
Deprecated.
since 3.0 use
ObjectIntProcedure instead. |
| Modifier and Type | Method and Description |
|---|---|
void |
ObjectIntMap.forEachKeyValue(ObjectIntProcedure<? super K> procedure)
Iterates through each key/value pair in the map, invoking the procedure for each.
|
| Modifier and Type | Method and Description |
|---|---|
void |
OrderedIterable.forEachWithIndex(int fromIndex,
int toIndex,
ObjectIntProcedure<? super T> objectIntProcedure)
Iterates over the section of the iterable covered by the specified inclusive indexes.
|
void |
OrderedIterable.forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure)
Iterates over the iterable passing each element and the current relative int index to the specified instance of
ObjectIntProcedure
|
default void |
ReversibleIterable.reverseForEachWithIndex(ObjectIntProcedure<? super T> procedure)
Evaluates the procedure for each element and it's index in reverse order.
|
Copyright © 2004–2022. All rights reserved.