Uses of Interface
org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure
Packages that use ObjectIntProcedure
Package
Description
This package contains interfaces for Eclipse Collections API.
This package contains interfaces for Bag API.
This package contains interfaces for Procedure API.
This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
-
Uses of ObjectIntProcedure in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type ObjectIntProcedureModifier and TypeMethodDescriptionvoidInternalIterable.forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure) Deprecated.in 6.0. -
Uses of ObjectIntProcedure in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag with parameters of type ObjectIntProcedureModifier and TypeMethodDescriptionvoidBag.forEachWithOccurrences(ObjectIntProcedure<? super T> procedure) For each distinct item, with the number of occurrences, execute the specified procedure.voidParallelBag.forEachWithOccurrences(ObjectIntProcedure<? super T> procedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.api.block.procedure
Subinterfaces of ObjectIntProcedure in org.eclipse.collections.api.block.procedureModifier and TypeInterfaceDescriptioninterfaceDeprecated.since 3.0 useObjectIntProcedureinstead. -
Uses of ObjectIntProcedure in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type ObjectIntProcedureModifier and TypeMethodDescriptionvoidObjectIntMap.forEachKeyValue(ObjectIntProcedure<? super K> procedure) Iterates through each key/value pair in the map, invoking the procedure for each. -
Uses of ObjectIntProcedure in org.eclipse.collections.api.ordered
Methods in org.eclipse.collections.api.ordered with parameters of type ObjectIntProcedureModifier and TypeMethodDescriptionvoidOrderedIterable.forEachWithIndex(int fromIndex, int toIndex, ObjectIntProcedure<? super T> objectIntProcedure) Iterates over the section of the iterable covered by the specified inclusive indexes.voidOrderedIterable.forEachWithIndex(ObjectIntProcedure<? super T> objectIntProcedure) Iterates over the iterable passing each element and the current relative int index to the specified instance of ObjectIntProceduredefault voidReversibleIterable.reverseForEachWithIndex(ObjectIntProcedure<? super T> procedure) Evaluates the procedure for each element and it's index in reverse order.