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 org.eclipse.collections.impl This package contains implementations for Eclipse Collections API.org.eclipse.collections.impl.bag.immutable This package contains implementations of theImmutableBag
interface.org.eclipse.collections.impl.bag.mutable This package contains implementations of theMutableBag
interface.org.eclipse.collections.impl.bag.sorted.immutable org.eclipse.collections.impl.bag.sorted.mutable This package contains implementations ofMutableSortedBag
.org.eclipse.collections.impl.bimap org.eclipse.collections.impl.bimap.mutable This package contains implementations of theMutableBiMap
interface.org.eclipse.collections.impl.block.factory This package contains factory implementations forFunction
,Predicate
,SerializableComparator
andProcedure
.org.eclipse.collections.impl.block.procedure This package contains implementations ofProcedure
andProcedure2
.org.eclipse.collections.impl.block.procedure.checked This package contains abstract implementations ofProcedure
andProcedure2
.org.eclipse.collections.impl.block.procedure.checked.primitive This package contains abstract implementations of primitive procedures.org.eclipse.collections.impl.collection org.eclipse.collections.impl.collection.mutable This package contains implementations of theMutableCollection
interface.org.eclipse.collections.impl.forkjoin This package contains implementations which has several parallel algorithms that work with Collections and make use of Java's fork-join framework.org.eclipse.collections.impl.lazy This package contains implementations of theLazyIterable
interface.org.eclipse.collections.impl.lazy.parallel.bag org.eclipse.collections.impl.lazy.primitive This package contains implementations of the lazy primitive iterator interfaces.org.eclipse.collections.impl.list This package contains implementations of theListIterable
interface.org.eclipse.collections.impl.list.fixed This package contains implementations of theFixedSizeList
interface.org.eclipse.collections.impl.list.immutable This package contains implementations of theImmutableList
interface.org.eclipse.collections.impl.list.mutable This package contains implementations of theMutableList
interface.org.eclipse.collections.impl.map This package contains implementations of theMapIterable
interface.org.eclipse.collections.impl.map.fixed This package contains implementations of theFixedSizeMap
interface.org.eclipse.collections.impl.map.immutable This package contains implementations of theImmutableMap
interface.org.eclipse.collections.impl.map.immutable.primitive This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.mutable This package contains implementations of theMutableMap
interface.org.eclipse.collections.impl.map.mutable.primitive This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.ordered.mutable org.eclipse.collections.impl.map.sorted.immutable This package contains implementations of theMutableSortedMap
interface.org.eclipse.collections.impl.map.sorted.mutable This package contains implementations of theMutableSortedMap
interface.org.eclipse.collections.impl.map.strategy.immutable This package contains immutable map implementations backed by hashtables that rely onHashingStrategy
s provided by the developer to compute the hashCode and equals for the objects stored in the map.org.eclipse.collections.impl.map.strategy.mutable This package contains mutable map implementations backed by hashtables that rely onHashingStrategy
s provided by the developer to compute the hashCode and equals for the objects stored in the map.org.eclipse.collections.impl.parallel This package contains classes which is used for parallel iteration through the containers.org.eclipse.collections.impl.set.fixed This package contains implementations ofFixedSizeSet
.org.eclipse.collections.impl.set.immutable This package contains the implementations ofImmutableSet
.org.eclipse.collections.impl.set.mutable This package contains implementations ofMutableSet
.org.eclipse.collections.impl.set.sorted.immutable This package contains implementations ofImmutableSortedSet
.org.eclipse.collections.impl.set.sorted.mutable This package contains implementations ofMutableSortedSet
.org.eclipse.collections.impl.set.strategy.immutable This package contains implementations of immutable sets with user definedHashingStrategy
s.org.eclipse.collections.impl.set.strategy.mutable This package contains implementations of sets with user definedHashingStrategy
s.org.eclipse.collections.impl.stack.immutable This package contains implementations of theImmutableStack
interface.org.eclipse.collections.impl.stack.mutable This package contains implementations of theMutableStack
interface.org.eclipse.collections.impl.utility This package contains static utilities that provide iteration pattern implementations which work with JCF collections.org.eclipse.collections.impl.utility.internal 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 ObjectIntProcedure Modifier and Type Method Description void
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 ObjectIntProcedure Modifier and Type Method Description void
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.procedure Modifier and Type Interface Description interface
ObjectIntProcedure<T>
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 ObjectIntProcedure Modifier and Type Method Description void
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 ObjectIntProcedure Modifier and Type Method 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 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 ObjectIntProcedure Modifier and Type Method Description void
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 ObjectIntProcedure Modifier and Type Method Description void
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 ObjectIntProcedure Modifier and Type Method Description void
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 ObjectIntProcedure Modifier and Type Method Description void
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 ObjectIntProcedure Modifier and Type Method Description void
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 ObjectIntProcedure Modifier and Type Method Description void
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 ObjectIntProcedure Modifier and Type Method Description void
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 ObjectIntProcedure Modifier and Type Class Description private static class
Functions.BindObjectIntProcedure<T1,T2>
private static class
ObjectIntProcedures.ProcedureAdapter<T>
Fields in org.eclipse.collections.impl.block.factory declared as ObjectIntProcedure Modifier and Type Field Description private ObjectIntProcedure<? super T2>
Functions.BindObjectIntProcedure. delegate
private ObjectIntProcedure<? super T>
Procedures.ObjectIntProcedureAdapter. objectIntProcedure
Methods in org.eclipse.collections.impl.block.factory that return ObjectIntProcedure Modifier and Type Method Description static <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 ObjectIntProcedure Modifier and Type Method Description static <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 ObjectIntProcedure Constructor Description BindObjectIntProcedure(ObjectIntProcedure<? super T2> delegate, Function<? super T1,T2> function)
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 ObjectIntProcedure Modifier and Type Class Description class
BagAddOccurrencesProcedure<T>
Fields in org.eclipse.collections.impl.block.procedure declared as ObjectIntProcedure Modifier and Type Field Description private ObjectIntProcedure<? super V>
AdaptObjectIntProcedureToProcedure. objectIntProcedure
private ObjectIntProcedure<? super T>
IfObjectIntProcedure. objectIntProcedure
Constructors in org.eclipse.collections.impl.block.procedure with parameters of type ObjectIntProcedure Constructor Description AdaptObjectIntProcedureToProcedure(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 Modifier and Type Class Description class
CheckedObjectIntProcedure<T>
-
Uses of ObjectIntProcedure in org.eclipse.collections.impl.block.procedure.checked.primitive
Classes in org.eclipse.collections.impl.block.procedure.checked.primitive that implement ObjectIntProcedure Modifier and Type Class Description class
CheckedObjectIntProcedure<V>
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 ObjectIntProcedure Modifier and Type Method Description void
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 ObjectIntProcedure Modifier and Type Method Description void
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 ObjectIntProcedure Modifier and Type Class Description class
FJListObjectIntProcedureRunner<T,PT extends ObjectIntProcedure<? super T>>
class
FJListObjectIntProcedureTask<T,PT extends ObjectIntProcedure<? super T>>
Fields in org.eclipse.collections.impl.forkjoin declared as ObjectIntProcedure Modifier and Type Field Description private PT
FJListObjectIntProcedureTask. procedure
Methods in org.eclipse.collections.impl.forkjoin with type parameters of type ObjectIntProcedure Modifier and Type Method Description static <T,PT extends ObjectIntProcedure<? super T>>
voidFJIterate. forEachWithIndex(java.lang.Iterable<T> iterable, ObjectIntProcedureFactory<PT> procedureFactory, Combiner<PT> combiner, int minForkSize, int taskCount)
static <T,PT extends ObjectIntProcedure<? super T>>
voidFJIterate. forEachWithIndex(java.lang.Iterable<T> iterable, ObjectIntProcedureFactory<PT> procedureFactory, Combiner<PT> combiner, int minForkSize, int taskCount, java.util.concurrent.ForkJoinPool executor)
static <T,PT extends ObjectIntProcedure<? super T>>
voidFJIterate. forEachWithIndex(java.lang.Iterable<T> iterable, ObjectIntProcedureFactory<PT> procedureFactory, Combiner<PT> combiner, java.util.concurrent.ForkJoinPool executor)
static <T,PT extends ObjectIntProcedure<? super T>>
voidFJIterate. forEachWithIndex(java.lang.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(java.lang.Iterable<T> iterable, PT procedure, java.util.concurrent.ForkJoinPool executor)
Iterate over the collection specified in parallel batches using the default runtime parameters.static <T,PT extends ObjectIntProcedure<? super T>>
voidFJIterate. forEachWithIndexInListOnExecutor(java.util.List<T> list, ObjectIntProcedureFactory<PT> procedureFactory, Combiner<PT> combiner, int minForkSize, int taskCount, java.util.concurrent.ForkJoinPool executor)
Methods in org.eclipse.collections.impl.forkjoin with parameters of type ObjectIntProcedure Modifier and Type Method Description static <T> void
FJIterate. forEachWithIndex(java.lang.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 ObjectIntProcedure Modifier and Type Method Description void
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 ObjectIntProcedure Modifier and Type Class Description private static class
SelectUnsortedBagBatch.IfProcedureWithOccurrences<T>
Fields in org.eclipse.collections.impl.lazy.parallel.bag declared as ObjectIntProcedure Modifier and Type Field Description private ObjectIntProcedure<? super T>
SelectUnsortedBagBatch.IfProcedureWithOccurrences. procedure
Methods in org.eclipse.collections.impl.lazy.parallel.bag with parameters of type ObjectIntProcedure Modifier and Type Method Description void
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 ObjectIntProcedure Constructor Description 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 ObjectIntProcedure Modifier and Type Method Description void
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 ObjectIntProcedure Modifier and Type Method Description void
Interval. forEachWithIndex(ObjectIntProcedure<? super java.lang.Integer> objectIntProcedure)
void
Interval. forEachWithIndex(ObjectIntProcedure<? super java.lang.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 ObjectIntProcedure Modifier and Type Method Description void
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 ObjectIntProcedure Modifier and Type Method Description void
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 ObjectIntProcedure Modifier and Type Field Description private ObjectIntProcedure<? super E>
CompositeFastList.ProcedureToInnerListObjectIntProcedure. objectIntProcedure
private ObjectIntProcedure<? super E>
CompositeFastList.ProcedureToReverseInnerListObjectIntProcedure. objectIntProcedure
Methods in org.eclipse.collections.impl.list.mutable with parameters of type ObjectIntProcedure Modifier and Type Method Description void
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 ObjectIntProcedure Constructor Description ProcedureToInnerListObjectIntProcedure(ObjectIntProcedure<? super E> objectIntProcedure)
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 ObjectIntProcedure Modifier and Type Method Description void
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 ObjectIntProcedure Modifier and Type Method Description void
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 ObjectIntProcedure Modifier and Type Method Description void
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 ObjectIntProcedure Modifier and Type Method Description void
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 ObjectIntProcedure Modifier and Type Method Description private int
UnifiedMap. chainedForEachValueWithIndex(java.lang.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 ObjectIntProcedure Modifier and Type Method Description void
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 ObjectIntProcedure Modifier and Type Method Description void
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 ObjectIntProcedure Modifier and Type Method Description void
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 ObjectIntProcedure Modifier and Type Method Description void
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 ObjectIntProcedure Modifier and Type Method Description void
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 ObjectIntProcedure Modifier and Type Method Description private int
UnifiedMapWithHashingStrategy. chainedForEachValueWithIndex(java.lang.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 ObjectIntProcedure Modifier and Type Interface Description interface
ObjectIntProcedureFactory<T extends ObjectIntProcedure<?>>
ObjectIntProcedureFactory is used by parallel iterators as a factory for stateful ObjectIntProcedure instances.class
ObjectIntProcedureFJTask<T,BT extends ObjectIntProcedure<? super T>>
class
ObjectIntProcedureFJTaskRunner<T,BT extends ObjectIntProcedure<? super T>>
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 ObjectIntProcedure Modifier and Type Field Description private BT
ObjectIntProcedureFJTask. procedure
private BT
PassThruObjectIntProcedureFactory. procedure
Methods in org.eclipse.collections.impl.parallel with type parameters of type ObjectIntProcedure Modifier and Type Method Description static <T,BT extends ObjectIntProcedure<? super T>>
voidParallelIterate. forEachWithIndex(java.lang.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(java.lang.Iterable<T> iterable, BT procedure, java.util.concurrent.Executor executor)
Iterate over the collection specified in parallel batches using the default runtime parameters.static <T,BT extends ObjectIntProcedure<? super T>>
voidParallelIterate. forEachWithIndex(java.lang.Iterable<T> iterable, ObjectIntProcedureFactory<BT> procedureFactory, Combiner<BT> combiner, int minForkSize, int taskCount)
static <T,BT extends ObjectIntProcedure<? super T>>
voidParallelIterate. forEachWithIndex(java.lang.Iterable<T> iterable, ObjectIntProcedureFactory<BT> procedureFactory, Combiner<BT> combiner, int minForkSize, int taskCount, java.util.concurrent.Executor executor)
static <T,BT extends ObjectIntProcedure<? super T>>
voidParallelIterate. forEachWithIndex(java.lang.Iterable<T> iterable, ObjectIntProcedureFactory<BT> procedureFactory, Combiner<BT> combiner, java.util.concurrent.Executor executor)
static <T,BT extends ObjectIntProcedure<? super T>>
voidParallelIterate. forEachWithIndexInListOnExecutor(java.util.List<T> list, ObjectIntProcedureFactory<BT> procedureFactory, Combiner<BT> combiner, int minForkSize, int taskCount, java.util.concurrent.Executor executor)
Methods in org.eclipse.collections.impl.parallel with parameters of type ObjectIntProcedure Modifier and Type Method Description static <T> void
ParallelIterate. forEachWithIndex(java.lang.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 ObjectIntProcedure Modifier and Type Method Description void
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 ObjectIntProcedure Modifier and Type Method Description void
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 ObjectIntProcedure Modifier and Type Method Description private 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 ObjectIntProcedure Modifier and Type Method Description void
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 ObjectIntProcedure Modifier and Type Method Description void
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 ObjectIntProcedure Modifier and Type Method Description void
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 ObjectIntProcedure Modifier and Type Method Description private 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 ObjectIntProcedure Modifier and Type Method Description void
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 ObjectIntProcedure Modifier and Type Method Description void
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 ObjectIntProcedure Modifier and Type Method Description static <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(java.util.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(java.util.ArrayList<T> list, ObjectIntProcedure<? super T> objectIntProcedure)
static <T> void
Iterate. forEachWithIndex(java.lang.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(java.util.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(java.util.List<T> list, ObjectIntProcedure<? super T> objectIntProcedure)
static <T> void
ArrayListIterate. reverseForEachWithIndex(java.util.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(java.util.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 ObjectIntProcedure Modifier and Type Method Description static <T> void
InternalArrayIterate. forEachWithIndex(T[] objectArray, int size, ObjectIntProcedure<? super T> objectIntProcedure)
static <T> void
IterableIterate. forEachWithIndex(java.lang.Iterable<T> iterable, ObjectIntProcedure<? super T> objectIntProcedure)
static <T> void
IterableIterate. forEachWithIndex(java.util.List<T> iterable, int from, int to, ObjectIntProcedure<? super T> objectIntProcedure)
static <T> void
IteratorIterate. forEachWithIndex(java.util.Iterator<T> iterator, ObjectIntProcedure<? super T> objectIntProcedure)
static <T> void
RandomAccessListIterate. forEachWithIndex(java.util.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(java.util.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)
-