Uses of Interface
org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure
-
Packages that use ObjectIntProcedure 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 -
-
Uses of ObjectIntProcedure in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type ObjectIntProcedure Modifier and Type Method Description voidInternalIterable. 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 ObjectIntProcedure Modifier and Type Method Description voidBag. 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.procedure Modifier and Type Interface Description interfaceObjectIntProcedure<T>Deprecated.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 ObjectIntProcedure Modifier and Type Method Description voidObjectIntMap. 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 ObjectIntProcedure Modifier and Type Method Description voidOrderedIterable. 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.
-