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.
This package contains implementations for Eclipse Collections API.
This package contains implementations of the
ImmutableBag
interface.This package contains implementations of the
MutableBag
interface.This package contains implementations of
MutableSortedBag
.This package contains implementations of the
MutableBiMap
interface.This package contains factory implementations for
Function
, Predicate
, SerializableComparator
and Procedure
.This package contains implementations of
Procedure
and Procedure2
.This package contains abstract implementations of
Procedure
and Procedure2
.This package contains abstract implementations of primitive procedures.
This package contains implementations of the
MutableCollection
interface.This package contains implementations which has several parallel algorithms that work with Collections and make use of Java's fork-join
framework.
This package contains implementations of the
LazyIterable
interface.This package contains implementations of the lazy primitive iterator interfaces.
This package contains implementations of the
ListIterable
interface.This package contains implementations of the
FixedSizeList
interface.This package contains implementations of the
ImmutableList
interface.This package contains implementations of the
MutableList
interface.This package contains implementations of the
MapIterable
interface.This package contains implementations of the
FixedSizeMap
interface.This package contains implementations of the
ImmutableMap
interface.This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the
MutableMap
interface.This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the
MutableSortedMap
interface.This package contains implementations of the
MutableSortedMap
interface.This package contains immutable map implementations backed by hashtables that rely on
HashingStrategy
s provided by
the developer to compute the hashCode and equals for the objects stored in the map.This package contains mutable map implementations backed by hashtables that rely on
HashingStrategy
s provided by
the developer to compute the hashCode and equals for the objects stored in the map.This package contains classes which is used for parallel iteration through the containers.
This package contains implementations of
FixedSizeSet
.This package contains the implementations of
ImmutableSet
.This package contains implementations of
MutableSet
.This package contains implementations of
ImmutableSortedSet
.This package contains implementations of
MutableSortedSet
.This package contains implementations of immutable sets with user defined
HashingStrategy
s.This package contains implementations of sets with user defined
HashingStrategy
s.This package contains implementations of the
ImmutableStack
interface.This package contains implementations of the
MutableStack
interface.This package contains static utilities that provide iteration pattern implementations which work with JCF collections.
This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections.
-
Uses of ObjectIntProcedure in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type ObjectIntProcedureModifier and TypeMethodDescriptionvoid
InternalIterable.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 TypeMethodDescriptionvoid
Bag.forEachWithOccurrences
(ObjectIntProcedure<? super T> procedure) For each distinct item, with the number of occurrences, execute the specified procedure.void
ParallelBag.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 TypeInterfaceDescriptioninterface
Deprecated.since 3.0 useObjectIntProcedure
instead. -
Uses of ObjectIntProcedure in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type ObjectIntProcedureModifier and TypeMethodDescriptionvoid
ObjectIntMap.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 TypeMethodDescriptionvoid
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 ObjectIntProceduredefault void
ReversibleIterable.reverseForEachWithIndex
(ObjectIntProcedure<? super T> procedure) Evaluates the procedure for each element and it's index in reverse order. -
Uses of ObjectIntProcedure in org.eclipse.collections.impl
Methods in org.eclipse.collections.impl with parameters of type ObjectIntProcedureModifier and TypeMethodDescriptionvoid
AbstractRichIterable.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) void
UnmodifiableRichIterable.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.bag.immutable
Methods in org.eclipse.collections.impl.bag.immutable with parameters of type ObjectIntProcedureModifier and TypeMethodDescriptionvoid
ImmutableEmptyBag.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) void
ImmutableHashBag.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) void
ImmutableSingletonBag.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) void
ImmutableArrayBag.forEachWithOccurrences
(ObjectIntProcedure<? super T> objectIntProcedure) void
ImmutableEmptyBag.forEachWithOccurrences
(ObjectIntProcedure<? super T> objectIntProcedure) void
ImmutableHashBag.forEachWithOccurrences
(ObjectIntProcedure<? super T> objectIntProcedure) void
ImmutableSingletonBag.forEachWithOccurrences
(ObjectIntProcedure<? super T> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.bag.mutable
Methods in org.eclipse.collections.impl.bag.mutable with parameters of type ObjectIntProcedureModifier and TypeMethodDescriptionvoid
AbstractHashBag.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) void
AbstractHashBag.forEachWithOccurrences
(ObjectIntProcedure<? super T> objectIntProcedure) void
MultiReaderHashBag.forEachWithOccurrences
(ObjectIntProcedure<? super T> procedure) void
MultiReaderHashBag.UntouchableMutableBag.forEachWithOccurrences
(ObjectIntProcedure<? super T> procedure) void
SynchronizedBag.forEachWithOccurrences
(ObjectIntProcedure<? super T> objectIntProcedure) void
UnmodifiableBag.forEachWithOccurrences
(ObjectIntProcedure<? super T> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.bag.sorted.immutable
Methods in org.eclipse.collections.impl.bag.sorted.immutable with parameters of type ObjectIntProcedureModifier and TypeMethodDescriptionvoid
ImmutableEmptySortedBag.forEachWithIndex
(int fromIndex, int toIndex, ObjectIntProcedure<? super T> objectIntProcedure) void
ImmutableSortedBagImpl.forEachWithIndex
(int fromIndex, int toIndex, ObjectIntProcedure<? super T> objectIntProcedure) void
ImmutableSortedBagImpl.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) void
ImmutableEmptySortedBag.forEachWithOccurrences
(ObjectIntProcedure<? super T> procedure) void
ImmutableSortedBagImpl.forEachWithOccurrences
(ObjectIntProcedure<? super T> procedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.bag.sorted.mutable
Methods in org.eclipse.collections.impl.bag.sorted.mutable with parameters of type ObjectIntProcedureModifier and TypeMethodDescriptionvoid
SynchronizedSortedBag.forEachWithIndex
(int fromIndex, int toIndex, ObjectIntProcedure<? super T> objectIntProcedure) void
TreeBag.forEachWithIndex
(int fromIndex, int toIndex, ObjectIntProcedure<? super T> objectIntProcedure) void
TreeBag.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) void
UnmodifiableSortedBag.forEachWithIndex
(int fromIndex, int toIndex, ObjectIntProcedure<? super T> objectIntProcedure) void
SynchronizedSortedBag.forEachWithOccurrences
(ObjectIntProcedure<? super T> procedure) void
TreeBag.forEachWithOccurrences
(ObjectIntProcedure<? super T> procedure) void
UnmodifiableSortedBag.forEachWithOccurrences
(ObjectIntProcedure<? super T> procedure) void
SynchronizedSortedBag.reverseForEachWithIndex
(ObjectIntProcedure<? super T> procedure) void
UnmodifiableSortedBag.reverseForEachWithIndex
(ObjectIntProcedure<? super T> procedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.bimap
Methods in org.eclipse.collections.impl.bimap with parameters of type ObjectIntProcedureModifier and TypeMethodDescriptionvoid
AbstractBiMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.bimap.mutable
Methods in org.eclipse.collections.impl.bimap.mutable with parameters of type ObjectIntProcedureModifier and TypeMethodDescriptionvoid
UnmodifiableBiMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.block.factory
Classes in org.eclipse.collections.impl.block.factory that implement ObjectIntProcedureModifier and TypeClassDescriptionprivate static final class
private static final class
Fields in org.eclipse.collections.impl.block.factory declared as ObjectIntProcedureModifier and TypeFieldDescriptionprivate final ObjectIntProcedure
<? super T2> Functions.BindObjectIntProcedure.delegate
private final ObjectIntProcedure
<? super T> Procedures.ObjectIntProcedureAdapter.objectIntProcedure
Methods in org.eclipse.collections.impl.block.factory that return ObjectIntProcedureModifier and TypeMethodDescriptionstatic <T1,
T2> ObjectIntProcedure <T1> Functions.bind
(ObjectIntProcedure<? super T2> delegate, Function<? super T1, T2> function) Bind the input of a ObjectIntProcedure to the result of a function, returning a new ObjectIntProcedure.static <T> ObjectIntProcedure
<T> ObjectIntProcedures.fromProcedure
(Procedure<? super T> procedure) Methods in org.eclipse.collections.impl.block.factory with parameters of type ObjectIntProcedureModifier and TypeMethodDescriptionstatic <T1,
T2> ObjectIntProcedure <T1> Functions.bind
(ObjectIntProcedure<? super T2> delegate, Function<? super T1, T2> function) Bind the input of a ObjectIntProcedure to the result of a function, returning a new ObjectIntProcedure.static <T> Procedure
<T> Procedures.fromObjectIntProcedure
(ObjectIntProcedure<? super T> objectIntProcedure) static <T> Procedure
<T> Procedures.fromProcedureWithInt
(ObjectIntProcedure<? super T> objectIntProcedure) Deprecated.since 1.2 - InlineableConstructors in org.eclipse.collections.impl.block.factory with parameters of type ObjectIntProcedureModifierConstructorDescriptionprivate
BindObjectIntProcedure
(ObjectIntProcedure<? super T2> delegate, Function<? super T1, T2> function) private
ObjectIntProcedureAdapter
(ObjectIntProcedure<? super T> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.block.procedure
Classes in org.eclipse.collections.impl.block.procedure that implement ObjectIntProcedureFields in org.eclipse.collections.impl.block.procedure declared as ObjectIntProcedureModifier and TypeFieldDescriptionprivate final ObjectIntProcedure
<? super V> AdaptObjectIntProcedureToProcedure.objectIntProcedure
private final ObjectIntProcedure
<? super T> IfObjectIntProcedure.objectIntProcedure
Constructors in org.eclipse.collections.impl.block.procedure with parameters of type ObjectIntProcedureModifierConstructorDescriptionAdaptObjectIntProcedureToProcedure
(ObjectIntProcedure<? super V> objectIntProcedure) IfObjectIntProcedure
(Predicate<? super T> newPredicate, ObjectIntProcedure<? super T> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.block.procedure.checked
Classes in org.eclipse.collections.impl.block.procedure.checked that implement ObjectIntProcedure -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.block.procedure.checked.primitive
Classes in org.eclipse.collections.impl.block.procedure.checked.primitive that implement ObjectIntProcedureModifier and TypeClassDescriptionclass
This file was automatically generated from template file checkedObjectPrimitiveProcedure.stg. -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.collection
Methods in org.eclipse.collections.impl.collection with parameters of type ObjectIntProcedureModifier and TypeMethodDescriptionvoid
AbstractSynchronizedRichIterable.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.collection.mutable
Methods in org.eclipse.collections.impl.collection.mutable with parameters of type ObjectIntProcedureModifier and TypeMethodDescriptionvoid
AbstractCollectionAdapter.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) void
AbstractMultiReaderMutableCollection.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) void
AbstractMultiReaderMutableCollection.UntouchableMutableCollection.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) void
AbstractUnmodifiableMutableCollection.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.forkjoin
Classes in org.eclipse.collections.impl.forkjoin with type parameters of type ObjectIntProcedureModifier and TypeClassDescriptionclass
FJListObjectIntProcedureRunner<T,
PT extends ObjectIntProcedure<? super T>> class
FJListObjectIntProcedureTask<T,
PT extends ObjectIntProcedure<? super T>> Fields in org.eclipse.collections.impl.forkjoin declared as ObjectIntProcedureMethods in org.eclipse.collections.impl.forkjoin with type parameters of type ObjectIntProcedureModifier and TypeMethodDescriptionstatic <T,
PT extends ObjectIntProcedure<? super T>>
voidFJIterate.forEachWithIndex
(Iterable<T> iterable, ObjectIntProcedureFactory<PT> procedureFactory, Combiner<PT> combiner, int minForkSize, int taskCount) static <T,
PT extends ObjectIntProcedure<? super T>>
voidFJIterate.forEachWithIndex
(Iterable<T> iterable, ObjectIntProcedureFactory<PT> procedureFactory, Combiner<PT> combiner, int minForkSize, int taskCount, ForkJoinPool executor) static <T,
PT extends ObjectIntProcedure<? super T>>
voidFJIterate.forEachWithIndex
(Iterable<T> iterable, ObjectIntProcedureFactory<PT> procedureFactory, Combiner<PT> combiner, ForkJoinPool executor) static <T,
PT extends ObjectIntProcedure<? super T>>
voidFJIterate.forEachWithIndex
(Iterable<T> iterable, PT procedure, int minForkSize, int taskCount) Iterate over the collection specified in parallel batches.static <T,
PT extends ObjectIntProcedure<? super T>>
voidFJIterate.forEachWithIndex
(Iterable<T> iterable, PT procedure, ForkJoinPool executor) Iterate over the collection specified in parallel batches using the default runtime parameters.static <T,
PT extends ObjectIntProcedure<? super T>>
voidFJIterate.forEachWithIndexInListOnExecutor
(List<T> list, ObjectIntProcedureFactory<PT> procedureFactory, Combiner<PT> combiner, int minForkSize, int taskCount, ForkJoinPool executor) Methods in org.eclipse.collections.impl.forkjoin with parameters of type ObjectIntProcedureModifier and TypeMethodDescriptionstatic <T> void
FJIterate.forEachWithIndex
(Iterable<T> iterable, ObjectIntProcedure<? super T> procedure) Iterate over the collection specified, in parallel batches using default runtime parameter values. -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.lazy
Methods in org.eclipse.collections.impl.lazy with parameters of type ObjectIntProcedureModifier and TypeMethodDescriptionvoid
CollectIterable.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
CompositeIterable.forEachWithIndex
(ObjectIntProcedure<? super E> objectIntProcedure) void
DistinctIterable.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) void
DropIterable.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) void
DropWhileIterable.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) void
FlatCollectIterable.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
LazyIterableAdapter.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) void
RejectIterable.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) void
ReverseIterable.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) void
SelectInstancesOfIterable.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) void
SelectIterable.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) void
TakeIterable.forEachWithIndex
(ObjectIntProcedure<? super T> procedure) void
TakeWhileIterable.forEachWithIndex
(ObjectIntProcedure<? super T> procedure) void
TapIterable.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.lazy.parallel.bag
Classes in org.eclipse.collections.impl.lazy.parallel.bag that implement ObjectIntProcedureModifier and TypeClassDescriptionprivate static final class
Fields in org.eclipse.collections.impl.lazy.parallel.bag declared as ObjectIntProcedureModifier and TypeFieldDescriptionprivate final ObjectIntProcedure
<? super T> SelectUnsortedBagBatch.IfProcedureWithOccurrences.procedure
Methods in org.eclipse.collections.impl.lazy.parallel.bag with parameters of type ObjectIntProcedureModifier and TypeMethodDescriptionvoid
CollectUnsortedBagBatch.forEachWithOccurrences
(ObjectIntProcedure<? super V> procedure) void
FlatCollectUnsortedBagBatch.forEachWithOccurrences
(ObjectIntProcedure<? super V> procedure) void
NonParallelUnsortedBag.forEachWithOccurrences
(ObjectIntProcedure<? super T> procedure) void
ParallelCollectUnsortedBag.forEachWithOccurrences
(ObjectIntProcedure<? super V> procedure) void
ParallelSelectUnsortedBag.forEachWithOccurrences
(ObjectIntProcedure<? super T> procedure) void
SelectUnsortedBagBatch.forEachWithOccurrences
(ObjectIntProcedure<? super T> procedure) void
UnsortedBagBatch.forEachWithOccurrences
(ObjectIntProcedure<? super T> procedure) Constructors in org.eclipse.collections.impl.lazy.parallel.bag with parameters of type ObjectIntProcedureModifierConstructorDescriptionprivate
IfProcedureWithOccurrences
(Predicate<? super T> predicate, ObjectIntProcedure<? super T> procedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.lazy.primitive
Methods in org.eclipse.collections.impl.lazy.primitive with parameters of type ObjectIntProcedureModifier and TypeMethodDescriptionvoid
CollectBooleanToObjectIterable.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
CollectByteToObjectIterable.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
CollectCharToObjectIterable.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
CollectDoubleToObjectIterable.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
CollectFloatToObjectIterable.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
CollectIntToObjectIterable.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
CollectLongToObjectIterable.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
CollectShortToObjectIterable.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
FlatCollectBooleanToObjectIterable.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
FlatCollectByteToObjectIterable.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
FlatCollectCharToObjectIterable.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
FlatCollectDoubleToObjectIterable.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
FlatCollectFloatToObjectIterable.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
FlatCollectIntToObjectIterable.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
FlatCollectLongToObjectIterable.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
FlatCollectShortToObjectIterable.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.list
Methods in org.eclipse.collections.impl.list with parameters of type ObjectIntProcedureModifier and TypeMethodDescriptionvoid
Interval.forEachWithIndex
(ObjectIntProcedure<? super Integer> objectIntProcedure) void
Interval.forEachWithIndex
(ObjectIntProcedure<? super Integer> objectIntProcedure, int startIndex, int endIndex) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.list.fixed
Methods in org.eclipse.collections.impl.list.fixed with parameters of type ObjectIntProcedureModifier and TypeMethodDescriptionvoid
AbstractArrayAdapter.forEachWithIndex
(int fromIndex, int toIndex, ObjectIntProcedure<? super T> objectIntProcedure) void
AbstractArrayAdapter.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) void
DoubletonList.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) void
EmptyList.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) void
QuadrupletonList.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) void
QuintupletonList.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) void
SextupletonList.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) void
SingletonList.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) void
TripletonList.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.list.immutable
Methods in org.eclipse.collections.impl.list.immutable with parameters of type ObjectIntProcedureModifier and TypeMethodDescriptionvoid
AbstractImmutableList.forEachWithIndex
(int from, int to, ObjectIntProcedure<? super T> objectIntProcedure) void
AbstractImmutableList.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) void
AbstractImmutableList.ImmutableSubList.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) void
ImmutableArrayList.forEachWithIndex
(int from, int to, ObjectIntProcedure<? super T> objectIntProcedure) void
ImmutableArrayList.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) void
ImmutableEmptyList.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) void
ImmutableEmptyList.reverseForEachWithIndex
(ObjectIntProcedure<? super T> procedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.list.mutable
Fields in org.eclipse.collections.impl.list.mutable declared as ObjectIntProcedureModifier and TypeFieldDescriptionprivate final ObjectIntProcedure
<? super E> CompositeFastList.ProcedureToInnerListObjectIntProcedure.objectIntProcedure
private final ObjectIntProcedure
<? super E> CompositeFastList.ProcedureToReverseInnerListObjectIntProcedure.objectIntProcedure
Methods in org.eclipse.collections.impl.list.mutable with parameters of type ObjectIntProcedureModifier and TypeMethodDescriptionvoid
AbstractMutableList.forEachWithIndex
(int fromIndex, int toIndex, ObjectIntProcedure<? super T> objectIntProcedure) void
AbstractMutableList.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) void
AbstractMutableList.SubList.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) void
ArrayListAdapter.forEachWithIndex
(int fromIndex, int toIndex, ObjectIntProcedure<? super T> objectIntProcedure) void
ArrayListAdapter.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) void
CompositeFastList.forEachWithIndex
(ObjectIntProcedure<? super E> objectIntProcedure) void
FastList.forEachWithIndex
(int from, int to, ObjectIntProcedure<? super T> objectIntProcedure) void
FastList.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) void
ListAdapter.forEachWithIndex
(int fromIndex, int toIndex, ObjectIntProcedure<? super T> objectIntProcedure) void
ListAdapter.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) void
MultiReaderFastList.forEachWithIndex
(int fromIndex, int toIndex, ObjectIntProcedure<? super T> objectIntProcedure) void
MultiReaderFastList.UntouchableMutableList.forEachWithIndex
(int fromIndex, int toIndex, ObjectIntProcedure<? super T> objectIntProcedure) void
RandomAccessListAdapter.forEachWithIndex
(int fromIndex, int toIndex, ObjectIntProcedure<? super T> objectIntProcedure) void
RandomAccessListAdapter.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) void
SynchronizedMutableList.forEachWithIndex
(int fromIndex, int toIndex, ObjectIntProcedure<? super T> objectIntProcedure) void
UnmodifiableMutableList.forEachWithIndex
(int fromIndex, int toIndex, ObjectIntProcedure<? super T> objectIntProcedure) void
ArrayListAdapter.reverseForEachWithIndex
(ObjectIntProcedure<? super T> procedure) void
CompositeFastList.reverseForEachWithIndex
(ObjectIntProcedure<? super E> procedure) void
ListAdapter.reverseForEachWithIndex
(ObjectIntProcedure<? super T> procedure) void
MultiReaderFastList.reverseForEachWithIndex
(ObjectIntProcedure<? super T> procedure) void
MultiReaderFastList.UntouchableMutableList.reverseForEachWithIndex
(ObjectIntProcedure<? super T> procedure) void
RandomAccessListAdapter.reverseForEachWithIndex
(ObjectIntProcedure<? super T> procedure) void
SynchronizedMutableList.reverseForEachWithIndex
(ObjectIntProcedure<? super T> procedure) void
UnmodifiableMutableList.reverseForEachWithIndex
(ObjectIntProcedure<? super T> procedure) Constructors in org.eclipse.collections.impl.list.mutable with parameters of type ObjectIntProcedureModifierConstructorDescriptionprivate
ProcedureToInnerListObjectIntProcedure
(ObjectIntProcedure<? super E> objectIntProcedure) private
ProcedureToReverseInnerListObjectIntProcedure
(ObjectIntProcedure<? super E> objectIntProcedure, int size) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.map
Methods in org.eclipse.collections.impl.map with parameters of type ObjectIntProcedureModifier and TypeMethodDescriptionvoid
AbstractMapIterable.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.map.fixed
Methods in org.eclipse.collections.impl.map.fixed with parameters of type ObjectIntProcedureModifier and TypeMethodDescriptionvoid
DoubletonMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
EmptyMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
SingletonMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
TripletonMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.map.immutable
Methods in org.eclipse.collections.impl.map.immutable with parameters of type ObjectIntProcedureModifier and TypeMethodDescriptionvoid
ImmutableDoubletonMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
ImmutableEmptyMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
ImmutableQuadrupletonMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
ImmutableSingletonMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
ImmutableTripletonMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
ImmutableUnifiedMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive with parameters of type ObjectIntProcedureModifier and TypeMethodDescriptionvoid
ImmutableObjectIntEmptyMap.forEachKeyValue
(ObjectIntProcedure<? super K> objectIntProcedure) void
ImmutableObjectIntHashMap.forEachKeyValue
(ObjectIntProcedure<? super K> objectIntProcedure) void
ImmutableObjectIntSingletonMap.forEachKeyValue
(ObjectIntProcedure<? super K> objectIntProcedure) void
ImmutableByteObjectEmptyMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
ImmutableByteObjectHashMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
ImmutableByteObjectSingletonMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
ImmutableCharObjectEmptyMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
ImmutableCharObjectHashMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
ImmutableCharObjectSingletonMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
ImmutableDoubleObjectEmptyMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
ImmutableDoubleObjectHashMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
ImmutableDoubleObjectSingletonMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
ImmutableFloatObjectEmptyMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
ImmutableFloatObjectHashMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
ImmutableFloatObjectSingletonMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
ImmutableIntObjectEmptyMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
ImmutableIntObjectHashMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
ImmutableIntObjectSingletonMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
ImmutableLongObjectEmptyMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
ImmutableLongObjectHashMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
ImmutableLongObjectSingletonMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
ImmutableShortObjectEmptyMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
ImmutableShortObjectHashMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
ImmutableShortObjectSingletonMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.map.mutable
Methods in org.eclipse.collections.impl.map.mutable with parameters of type ObjectIntProcedureModifier and TypeMethodDescriptionprivate int
UnifiedMap.chainedForEachValueWithIndex
(Object[] chain, ObjectIntProcedure<? super V> objectIntProcedure, int index) void
ConcurrentHashMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
ConcurrentHashMapUnsafe.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
ConcurrentMutableHashMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) Deprecated.void
UnifiedMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
UnmodifiableMutableMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type ObjectIntProcedureModifier and TypeMethodDescriptionvoid
ObjectIntHashMap.forEachKeyValue
(ObjectIntProcedure<? super K> procedure) void
ObjectIntHashMapWithHashingStrategy.forEachKeyValue
(ObjectIntProcedure<? super K> procedure) void
SynchronizedObjectIntMap.forEachKeyValue
(ObjectIntProcedure<? super K> procedure) void
UnmodifiableObjectIntMap.forEachKeyValue
(ObjectIntProcedure<? super K> procedure) void
ByteBooleanHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super ByteBooleanPair> objectIntProcedure) void
ByteByteHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super ByteBytePair> objectIntProcedure) void
ByteCharHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super ByteCharPair> objectIntProcedure) void
ByteDoubleHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super ByteDoublePair> objectIntProcedure) void
ByteFloatHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super ByteFloatPair> objectIntProcedure) void
ByteIntHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super ByteIntPair> objectIntProcedure) void
ByteLongHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super ByteLongPair> objectIntProcedure) void
ByteObjectHashMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
ByteObjectHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super ByteObjectPair<V>> objectIntProcedure) void
ByteShortHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super ByteShortPair> objectIntProcedure) void
CharBooleanHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super CharBooleanPair> objectIntProcedure) void
CharByteHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super CharBytePair> objectIntProcedure) void
CharCharHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super CharCharPair> objectIntProcedure) void
CharDoubleHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super CharDoublePair> objectIntProcedure) void
CharFloatHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super CharFloatPair> objectIntProcedure) void
CharIntHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super CharIntPair> objectIntProcedure) void
CharLongHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super CharLongPair> objectIntProcedure) void
CharObjectHashMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
CharObjectHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super CharObjectPair<V>> objectIntProcedure) void
CharShortHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super CharShortPair> objectIntProcedure) void
DoubleBooleanHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super DoubleBooleanPair> objectIntProcedure) void
DoubleByteHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super DoubleBytePair> objectIntProcedure) void
DoubleCharHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super DoubleCharPair> objectIntProcedure) void
DoubleDoubleHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super DoubleDoublePair> objectIntProcedure) void
DoubleFloatHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super DoubleFloatPair> objectIntProcedure) void
DoubleIntHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super DoubleIntPair> objectIntProcedure) void
DoubleLongHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super DoubleLongPair> objectIntProcedure) void
DoubleObjectHashMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
DoubleObjectHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super DoubleObjectPair<V>> objectIntProcedure) void
DoubleShortHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super DoubleShortPair> objectIntProcedure) void
FloatBooleanHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super FloatBooleanPair> objectIntProcedure) void
FloatByteHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super FloatBytePair> objectIntProcedure) void
FloatCharHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super FloatCharPair> objectIntProcedure) void
FloatDoubleHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super FloatDoublePair> objectIntProcedure) void
FloatFloatHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super FloatFloatPair> objectIntProcedure) void
FloatIntHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super FloatIntPair> objectIntProcedure) void
FloatLongHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super FloatLongPair> objectIntProcedure) void
FloatObjectHashMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
FloatObjectHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super FloatObjectPair<V>> objectIntProcedure) void
FloatShortHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super FloatShortPair> objectIntProcedure) void
IntBooleanHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super IntBooleanPair> objectIntProcedure) void
IntByteHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super IntBytePair> objectIntProcedure) void
IntCharHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super IntCharPair> objectIntProcedure) void
IntDoubleHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super IntDoublePair> objectIntProcedure) void
IntFloatHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super IntFloatPair> objectIntProcedure) void
IntIntHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super IntIntPair> objectIntProcedure) void
IntLongHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super IntLongPair> objectIntProcedure) void
IntObjectHashMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
IntObjectHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super IntObjectPair<V>> objectIntProcedure) void
IntShortHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super IntShortPair> objectIntProcedure) void
LongBooleanHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super LongBooleanPair> objectIntProcedure) void
LongByteHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super LongBytePair> objectIntProcedure) void
LongCharHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super LongCharPair> objectIntProcedure) void
LongDoubleHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super LongDoublePair> objectIntProcedure) void
LongFloatHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super LongFloatPair> objectIntProcedure) void
LongIntHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super LongIntPair> objectIntProcedure) void
LongLongHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super LongLongPair> objectIntProcedure) void
LongObjectHashMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
LongObjectHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super LongObjectPair<V>> objectIntProcedure) void
LongShortHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super LongShortPair> objectIntProcedure) void
ObjectBooleanHashMap.KeysView.forEachWithIndex
(ObjectIntProcedure<? super K> objectIntProcedure) void
ObjectBooleanHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super ObjectBooleanPair<K>> objectIntProcedure) void
ObjectBooleanHashMapWithHashingStrategy.KeysView.forEachWithIndex
(ObjectIntProcedure<? super K> objectIntProcedure) void
ObjectBooleanHashMapWithHashingStrategy.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super ObjectBooleanPair<K>> objectIntProcedure) void
ObjectByteHashMap.KeysView.forEachWithIndex
(ObjectIntProcedure<? super K> objectByteProcedure) void
ObjectByteHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super ObjectBytePair<K>> objectIntProcedure) void
ObjectByteHashMapWithHashingStrategy.KeysView.forEachWithIndex
(ObjectIntProcedure<? super K> objectByteProcedure) void
ObjectByteHashMapWithHashingStrategy.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super ObjectBytePair<K>> objectIntProcedure) void
ObjectCharHashMap.KeysView.forEachWithIndex
(ObjectIntProcedure<? super K> objectCharProcedure) void
ObjectCharHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super ObjectCharPair<K>> objectIntProcedure) void
ObjectCharHashMapWithHashingStrategy.KeysView.forEachWithIndex
(ObjectIntProcedure<? super K> objectCharProcedure) void
ObjectCharHashMapWithHashingStrategy.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super ObjectCharPair<K>> objectIntProcedure) void
ObjectDoubleHashMap.KeysView.forEachWithIndex
(ObjectIntProcedure<? super K> objectDoubleProcedure) void
ObjectDoubleHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super ObjectDoublePair<K>> objectIntProcedure) void
ObjectDoubleHashMapWithHashingStrategy.KeysView.forEachWithIndex
(ObjectIntProcedure<? super K> objectDoubleProcedure) void
ObjectDoubleHashMapWithHashingStrategy.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super ObjectDoublePair<K>> objectIntProcedure) void
ObjectFloatHashMap.KeysView.forEachWithIndex
(ObjectIntProcedure<? super K> objectFloatProcedure) void
ObjectFloatHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super ObjectFloatPair<K>> objectIntProcedure) void
ObjectFloatHashMapWithHashingStrategy.KeysView.forEachWithIndex
(ObjectIntProcedure<? super K> objectFloatProcedure) void
ObjectFloatHashMapWithHashingStrategy.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super ObjectFloatPair<K>> objectIntProcedure) void
ObjectIntHashMap.KeysView.forEachWithIndex
(ObjectIntProcedure<? super K> objectIntProcedure) void
ObjectIntHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super ObjectIntPair<K>> objectIntProcedure) void
ObjectIntHashMapWithHashingStrategy.KeysView.forEachWithIndex
(ObjectIntProcedure<? super K> objectIntProcedure) void
ObjectIntHashMapWithHashingStrategy.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super ObjectIntPair<K>> objectIntProcedure) void
ObjectLongHashMap.KeysView.forEachWithIndex
(ObjectIntProcedure<? super K> objectLongProcedure) void
ObjectLongHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super ObjectLongPair<K>> objectIntProcedure) void
ObjectLongHashMapWithHashingStrategy.KeysView.forEachWithIndex
(ObjectIntProcedure<? super K> objectLongProcedure) void
ObjectLongHashMapWithHashingStrategy.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super ObjectLongPair<K>> objectIntProcedure) void
ObjectShortHashMap.KeysView.forEachWithIndex
(ObjectIntProcedure<? super K> objectShortProcedure) void
ObjectShortHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super ObjectShortPair<K>> objectIntProcedure) void
ObjectShortHashMapWithHashingStrategy.KeysView.forEachWithIndex
(ObjectIntProcedure<? super K> objectShortProcedure) void
ObjectShortHashMapWithHashingStrategy.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super ObjectShortPair<K>> objectIntProcedure) void
ShortBooleanHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super ShortBooleanPair> objectIntProcedure) void
ShortByteHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super ShortBytePair> objectIntProcedure) void
ShortCharHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super ShortCharPair> objectIntProcedure) void
ShortDoubleHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super ShortDoublePair> objectIntProcedure) void
ShortFloatHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super ShortFloatPair> objectIntProcedure) void
ShortIntHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super ShortIntPair> objectIntProcedure) void
ShortLongHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super ShortLongPair> objectIntProcedure) void
ShortObjectHashMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
ShortObjectHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super ShortObjectPair<V>> objectIntProcedure) void
ShortShortHashMap.KeyValuesView.forEachWithIndex
(ObjectIntProcedure<? super ShortShortPair> objectIntProcedure) void
SynchronizedByteObjectMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
SynchronizedCharObjectMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
SynchronizedDoubleObjectMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
SynchronizedFloatObjectMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
SynchronizedIntObjectMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
SynchronizedLongObjectMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
SynchronizedShortObjectMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
UnmodifiableByteObjectMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
UnmodifiableCharObjectMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
UnmodifiableDoubleObjectMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
UnmodifiableFloatObjectMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
UnmodifiableIntObjectMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
UnmodifiableLongObjectMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
UnmodifiableShortObjectMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.map.ordered.mutable
Methods in org.eclipse.collections.impl.map.ordered.mutable with parameters of type ObjectIntProcedureModifier and TypeMethodDescriptionvoid
OrderedMapAdapter.forEachWithIndex
(int fromIndex, int toIndex, ObjectIntProcedure<? super V> objectIntProcedure) void
UnmodifiableMutableOrderedMap.forEachWithIndex
(int fromIndex, int toIndex, ObjectIntProcedure<? super V> objectIntProcedure) void
UnmodifiableMutableOrderedMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
UnmodifiableMutableOrderedMap.reverseForEachWithIndex
(ObjectIntProcedure<? super V> procedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.map.sorted.immutable
Methods in org.eclipse.collections.impl.map.sorted.immutable with parameters of type ObjectIntProcedureModifier and TypeMethodDescriptionvoid
AbstractImmutableSortedMap.forEachWithIndex
(int fromIndex, int toIndex, ObjectIntProcedure<? super V> objectIntProcedure) void
ImmutableEmptySortedMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.map.sorted.mutable
Methods in org.eclipse.collections.impl.map.sorted.mutable with parameters of type ObjectIntProcedureModifier and TypeMethodDescriptionvoid
AbstractMutableSortedMap.forEachWithIndex
(int fromIndex, int toIndex, ObjectIntProcedure<? super V> objectIntProcedure) void
SynchronizedSortedMap.forEachWithIndex
(int fromIndex, int toIndex, ObjectIntProcedure<? super V> objectIntProcedure) void
UnmodifiableTreeMap.forEachWithIndex
(int fromIndex, int toIndex, ObjectIntProcedure<? super V> objectIntProcedure) void
UnmodifiableTreeMap.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
SynchronizedSortedMap.reverseForEachWithIndex
(ObjectIntProcedure<? super V> procedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.map.strategy.immutable
Methods in org.eclipse.collections.impl.map.strategy.immutable with parameters of type ObjectIntProcedureModifier and TypeMethodDescriptionvoid
ImmutableEmptyMapWithHashingStrategy.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) void
ImmutableUnifiedMapWithHashingStrategy.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.map.strategy.mutable
Methods in org.eclipse.collections.impl.map.strategy.mutable with parameters of type ObjectIntProcedureModifier and TypeMethodDescriptionprivate int
UnifiedMapWithHashingStrategy.chainedForEachValueWithIndex
(Object[] chain, ObjectIntProcedure<? super V> objectIntProcedure, int index) void
UnifiedMapWithHashingStrategy.forEachWithIndex
(ObjectIntProcedure<? super V> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.parallel
Classes in org.eclipse.collections.impl.parallel with type parameters of type ObjectIntProcedureModifier and TypeInterfaceDescriptioninterface
ObjectIntProcedureFactory<T extends ObjectIntProcedure<?>>
ObjectIntProcedureFactory is used by parallel iterators as a factory for stateful ObjectIntProcedure instances.final class
ObjectIntProcedureFJTask<T,
BT extends ObjectIntProcedure<? super T>> final class
ObjectIntProcedureFJTaskRunner<T,
BT extends ObjectIntProcedure<? super T>> final class
PassThruObjectIntProcedureFactory<BT extends ObjectIntProcedure<?>>
This class acts as a no op factory for a ObjectIntProcedure which gets passed in and returned out.Fields in org.eclipse.collections.impl.parallel declared as ObjectIntProcedureModifier and TypeFieldDescriptionprivate BT
ObjectIntProcedureFJTask.procedure
private final BT
PassThruObjectIntProcedureFactory.procedure
Methods in org.eclipse.collections.impl.parallel with type parameters of type ObjectIntProcedureModifier and TypeMethodDescriptionstatic <T,
BT extends ObjectIntProcedure<? super T>>
voidParallelIterate.forEachWithIndex
(Iterable<T> iterable, BT procedure, int minForkSize, int taskCount) Iterate over the collection specified in parallel batches.static <T,
BT extends ObjectIntProcedure<? super T>>
voidParallelIterate.forEachWithIndex
(Iterable<T> iterable, BT procedure, Executor executor) Iterate over the collection specified in parallel batches using the default runtime parameters.static <T,
BT extends ObjectIntProcedure<? super T>>
voidParallelIterate.forEachWithIndex
(Iterable<T> iterable, ObjectIntProcedureFactory<BT> procedureFactory, Combiner<BT> combiner, int minForkSize, int taskCount) static <T,
BT extends ObjectIntProcedure<? super T>>
voidParallelIterate.forEachWithIndex
(Iterable<T> iterable, ObjectIntProcedureFactory<BT> procedureFactory, Combiner<BT> combiner, int minForkSize, int taskCount, Executor executor) static <T,
BT extends ObjectIntProcedure<? super T>>
voidParallelIterate.forEachWithIndex
(Iterable<T> iterable, ObjectIntProcedureFactory<BT> procedureFactory, Combiner<BT> combiner, Executor executor) static <T,
BT extends ObjectIntProcedure<? super T>>
voidParallelIterate.forEachWithIndexInListOnExecutor
(List<T> list, ObjectIntProcedureFactory<BT> procedureFactory, Combiner<BT> combiner, int minForkSize, int taskCount, Executor executor) Methods in org.eclipse.collections.impl.parallel with parameters of type ObjectIntProcedureModifier and TypeMethodDescriptionstatic <T> void
ParallelIterate.forEachWithIndex
(Iterable<T> iterable, ObjectIntProcedure<? super T> objectIntProcedure) Iterate over the collection specified, in parallel batches using default runtime parameter values. -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.set.fixed
Methods in org.eclipse.collections.impl.set.fixed with parameters of type ObjectIntProcedureModifier and TypeMethodDescriptionvoid
DoubletonSet.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) void
EmptySet.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) void
QuadrupletonSet.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) void
SingletonSet.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) void
TripletonSet.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.set.immutable
Methods in org.eclipse.collections.impl.set.immutable with parameters of type ObjectIntProcedureModifier and TypeMethodDescriptionvoid
ImmutableDoubletonSet.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) void
ImmutableEmptySet.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) void
ImmutableQuadrupletonSet.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) void
ImmutableSingletonSet.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) void
ImmutableTripletonSet.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.set.mutable
Methods in org.eclipse.collections.impl.set.mutable with parameters of type ObjectIntProcedureModifier and TypeMethodDescriptionprivate int
UnifiedSet.chainedForEachWithIndex
(UnifiedSet.ChainedBucket bucket, ObjectIntProcedure<? super T> procedure, int count) void
UnifiedSet.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.set.sorted.immutable
Methods in org.eclipse.collections.impl.set.sorted.immutable with parameters of type ObjectIntProcedureModifier and TypeMethodDescriptionvoid
ImmutableEmptySortedSet.forEachWithIndex
(int fromIndex, int toIndex, ObjectIntProcedure<? super T> objectIntProcedure) void
ImmutableEmptySortedSet.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) void
ImmutableTreeSet.forEachWithIndex
(int fromIndex, int toIndex, ObjectIntProcedure<? super T> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.set.sorted.mutable
Methods in org.eclipse.collections.impl.set.sorted.mutable with parameters of type ObjectIntProcedureModifier and TypeMethodDescriptionvoid
SortedSetAdapter.forEachWithIndex
(int fromIndex, int toIndex, ObjectIntProcedure<? super T> objectIntProcedure) void
SynchronizedSortedSet.forEachWithIndex
(int fromIndex, int toIndex, ObjectIntProcedure<? super T> objectIntProcedure) void
TreeSortedSet.forEachWithIndex
(int fromIndex, int toIndex, ObjectIntProcedure<? super T> objectIntProcedure) void
UnmodifiableSortedSet.forEachWithIndex
(int fromIndex, int toIndex, ObjectIntProcedure<? super T> objectIntProcedure) void
SortedSetAdapter.reverseForEachWithIndex
(ObjectIntProcedure<? super T> procedure) void
SynchronizedSortedSet.reverseForEachWithIndex
(ObjectIntProcedure<? super T> procedure) void
TreeSortedSet.reverseForEachWithIndex
(ObjectIntProcedure<? super T> procedure) void
UnmodifiableSortedSet.reverseForEachWithIndex
(ObjectIntProcedure<? super T> procedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.set.strategy.immutable
Methods in org.eclipse.collections.impl.set.strategy.immutable with parameters of type ObjectIntProcedureModifier and TypeMethodDescriptionvoid
ImmutableEmptySetWithHashingStrategy.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.set.strategy.mutable
Methods in org.eclipse.collections.impl.set.strategy.mutable with parameters of type ObjectIntProcedureModifier and TypeMethodDescriptionprivate int
UnifiedSetWithHashingStrategy.chainedForEachWithIndex
(UnifiedSetWithHashingStrategy.ChainedBucket bucket, ObjectIntProcedure<? super T> procedure, int count) void
UnifiedSetWithHashingStrategy.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.stack.immutable
Methods in org.eclipse.collections.impl.stack.immutable with parameters of type ObjectIntProcedureModifier and TypeMethodDescriptionvoid
ImmutableArrayStack.forEachWithIndex
(int fromIndex, int toIndex, ObjectIntProcedure<? super T> objectIntProcedure) Deprecated.void
ImmutableArrayStack.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) Deprecated.void
ImmutableEmptyStack.forEachWithIndex
(int fromIndex, int toIndex, ObjectIntProcedure<? super T> objectIntProcedure) void
ImmutableEmptyStack.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) void
ImmutableNotEmptyStack.forEachWithIndex
(int fromIndex, int toIndex, ObjectIntProcedure<? super T> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.stack.mutable
Methods in org.eclipse.collections.impl.stack.mutable with parameters of type ObjectIntProcedureModifier and TypeMethodDescriptionvoid
ArrayStack.forEachWithIndex
(int fromIndex, int toIndex, ObjectIntProcedure<? super T> objectIntProcedure) void
ArrayStack.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) void
SynchronizedStack.forEachWithIndex
(int fromIndex, int toIndex, ObjectIntProcedure<? super T> objectIntProcedure) void
SynchronizedStack.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) void
UnmodifiableStack.forEachWithIndex
(int fromIndex, int toIndex, ObjectIntProcedure<? super T> objectIntProcedure) void
UnmodifiableStack.forEachWithIndex
(ObjectIntProcedure<? super T> objectIntProcedure) -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility with parameters of type ObjectIntProcedureModifier and TypeMethodDescriptionstatic <T> void
ArrayIterate.forEachWithIndex
(T[] objectArray, int from, int to, ObjectIntProcedure<? super T> objectIntProcedure) Iterates over the section of the list covered by the specified inclusive indexes.static <T> void
ArrayIterate.forEachWithIndex
(T[] objectArray, ObjectIntProcedure<? super T> objectIntProcedure) static <T> void
ArrayListIterate.forEachWithIndex
(ArrayList<T> list, int from, int to, ObjectIntProcedure<? super T> objectIntProcedure) Iterates over the section of the list covered by the specified indexes.static <T> void
ArrayListIterate.forEachWithIndex
(ArrayList<T> list, ObjectIntProcedure<? super T> objectIntProcedure) static <T> void
Iterate.forEachWithIndex
(Iterable<T> iterable, ObjectIntProcedure<? super T> objectIntProcedure) Iterates over a collection passing each element and the current relative int index to the specified instance of ObjectIntProcedure.static <T> void
ListIterate.forEachWithIndex
(List<T> list, int from, int to, ObjectIntProcedure<? super T> objectIntProcedure) Iterates over the section of the list covered by the specified indexes.static <T> void
ListIterate.forEachWithIndex
(List<T> list, ObjectIntProcedure<? super T> objectIntProcedure) static <T> void
ArrayListIterate.reverseForEachWithIndex
(ArrayList<T> list, ObjectIntProcedure<? super T> procedure) Reverses over the List in reverse order executing the Procedure with index for each element.static <T> void
ListIterate.reverseForEachWithIndex
(List<T> list, ObjectIntProcedure<? super T> objectIntProcedure) Iterates over the List in reverse order executing the Procedure for each element. -
Uses of ObjectIntProcedure in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal with parameters of type ObjectIntProcedureModifier and TypeMethodDescriptionstatic <T> void
InternalArrayIterate.forEachWithIndex
(T[] objectArray, int size, ObjectIntProcedure<? super T> objectIntProcedure) static <T> void
IterableIterate.forEachWithIndex
(Iterable<T> iterable, ObjectIntProcedure<? super T> objectIntProcedure) static <T> void
IterableIterate.forEachWithIndex
(List<T> iterable, int from, int to, ObjectIntProcedure<? super T> objectIntProcedure) static <T> void
IteratorIterate.forEachWithIndex
(Iterator<T> iterator, ObjectIntProcedure<? super T> objectIntProcedure) static <T> void
RandomAccessListIterate.forEachWithIndex
(List<T> list, int from, int to, ObjectIntProcedure<? super T> objectIntProcedure) Iterates over the section of the list covered by the specified indexes.static <T> void
RandomAccessListIterate.forEachWithIndex
(List<T> list, ObjectIntProcedure<? super T> objectIntProcedure) Iterates over a collection passing each element and the current relative int index to the specified instance of ObjectIntProcedure.static <T> void
InternalArrayIterate.forEachWithIndexWithoutChecks
(T[] objectArray, int from, int to, ObjectIntProcedure<? super T> objectIntProcedure)