Uses of Interface
org.eclipse.collections.api.block.function.primitive.ObjectIntToObjectFunction
-
Packages that use ObjectIntToObjectFunction 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.bag.sorted This package contains interfaces for SortedBag API.org.eclipse.collections.api.list This package contains interfaces for list API which enhance the performance and functionality ofList
.org.eclipse.collections.api.map.sorted This package contains mutable and immutable sorted map interfaces.org.eclipse.collections.api.ordered org.eclipse.collections.api.set.sorted This package contains interfaces for sorted set API.org.eclipse.collections.api.stack This package contains interfaces for stack API.org.eclipse.collections.impl.bag.immutable This package contains implementations of theImmutableBag
interface.org.eclipse.collections.impl.bag.immutable.primitive This package contains implementations of the immutable primitive bag interfaces.org.eclipse.collections.impl.bag.mutable This package contains implementations of theMutableBag
interface.org.eclipse.collections.impl.bag.mutable.primitive This package contains implementations of the mutable primitive bag interfaces.org.eclipse.collections.impl.bag.sorted.immutable org.eclipse.collections.impl.bag.sorted.mutable This package contains implementations ofMutableSortedBag
.org.eclipse.collections.impl.collection.mutable.primitive This package contains implementations of the mutable primitive collection interfaces.org.eclipse.collections.impl.lazy.primitive This package contains implementations of the lazy primitive iterator interfaces.org.eclipse.collections.impl.list.immutable This package contains implementations of theImmutableList
interface.org.eclipse.collections.impl.list.immutable.primitive This package contains implementations of immutable primitive list interfaces and immutable primitive list factory interfaces.org.eclipse.collections.impl.list.mutable This package contains implementations of theMutableList
interface.org.eclipse.collections.impl.list.mutable.primitive This package contains implementations of the mutable primitive list interfaces.org.eclipse.collections.impl.list.primitive This package contains implementations of the primitive list interfaces.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.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.mutable This package contains implementations of theMutableSortedMap
interface.org.eclipse.collections.impl.primitive org.eclipse.collections.impl.set.immutable.primitive This package contains implementations of the immutable primitive set interfaces.org.eclipse.collections.impl.set.mutable.primitive This package contains implementations of the mutable primitive set interfaces.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.stack.immutable.primitive This package contains implementations of the immutable primitive stack interfaces.org.eclipse.collections.impl.stack.mutable This package contains implementations of theMutableStack
interface.org.eclipse.collections.impl.stack.mutable.primitive This package contains implementations of the mutable primitive stack interfaces.org.eclipse.collections.impl.stack.primitive org.eclipse.collections.impl.string.immutable 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.org.eclipse.collections.impl.utility.internal.primitive -
-
Uses of ObjectIntToObjectFunction in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type ObjectIntToObjectFunction Modifier and Type Method Description <T> T
IntIterable. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
-
Uses of ObjectIntToObjectFunction in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag with parameters of type ObjectIntToObjectFunction Modifier and Type Method Description <V> RichIterable<V>
Bag. collectWithOccurrences(ObjectIntToObjectFunction<? super T,? extends V> function)
Iterates over the unique elements and their occurrences and collects the results of applying the specified function.default <V,R extends java.util.Collection<V>>
RBag. collectWithOccurrences(ObjectIntToObjectFunction<? super T,? extends V> function, R target)
Iterates over the unique elements and their occurrences and collects the results of applying the specified function into the target collection.<V> ImmutableBag<V>
ImmutableBag. collectWithOccurrences(ObjectIntToObjectFunction<? super T,? extends V> function)
<V> ImmutableCollection<V>
ImmutableBagIterable. collectWithOccurrences(ObjectIntToObjectFunction<? super T,? extends V> function)
<V> MutableBag<V>
MutableBag. collectWithOccurrences(ObjectIntToObjectFunction<? super T,? extends V> function)
<V> RichIterable<V>
MutableBagIterable. collectWithOccurrences(ObjectIntToObjectFunction<? super T,? extends V> function)
<V> UnsortedBag<V>
UnsortedBag. collectWithOccurrences(ObjectIntToObjectFunction<? super T,? extends V> function)
-
Uses of ObjectIntToObjectFunction in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted with parameters of type ObjectIntToObjectFunction Modifier and Type Method Description default <V> ImmutableList<V>
ImmutableSortedBag. collectWithIndex(ObjectIntToObjectFunction<? super T,? extends V> function)
default <V> MutableList<V>
MutableSortedBag. collectWithIndex(ObjectIntToObjectFunction<? super T,? extends V> function)
default <V> ListIterable<V>
SortedBag. collectWithIndex(ObjectIntToObjectFunction<? super T,? extends V> function)
<V> ImmutableList<V>
ImmutableSortedBag. collectWithOccurrences(ObjectIntToObjectFunction<? super T,? extends V> function)
<V> MutableList<V>
MutableSortedBag. collectWithOccurrences(ObjectIntToObjectFunction<? super T,? extends V> function)
<V> ListIterable<V>
SortedBag. collectWithOccurrences(ObjectIntToObjectFunction<? super T,? extends V> function)
-
Uses of ObjectIntToObjectFunction in org.eclipse.collections.api.list
Methods in org.eclipse.collections.api.list with parameters of type ObjectIntToObjectFunction Modifier and Type Method Description default <V> ImmutableList<V>
ImmutableList. collectWithIndex(ObjectIntToObjectFunction<? super T,? extends V> function)
default <V> ListIterable<V>
ListIterable. collectWithIndex(ObjectIntToObjectFunction<? super T,? extends V> function)
default <V> MutableList<V>
MutableList. collectWithIndex(ObjectIntToObjectFunction<? super T,? extends V> function)
-
Uses of ObjectIntToObjectFunction in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted with parameters of type ObjectIntToObjectFunction Modifier and Type Method Description default <R> ImmutableList<R>
ImmutableSortedMap. collectWithIndex(ObjectIntToObjectFunction<? super V,? extends R> function)
default <R> MutableList<R>
MutableSortedMap. collectWithIndex(ObjectIntToObjectFunction<? super V,? extends R> function)
default <V1> ListIterable<V1>
SortedMapIterable. collectWithIndex(ObjectIntToObjectFunction<? super V,? extends V1> function)
-
Uses of ObjectIntToObjectFunction in org.eclipse.collections.api.ordered
Methods in org.eclipse.collections.api.ordered with parameters of type ObjectIntToObjectFunction Modifier and Type Method Description default <V> OrderedIterable<V>
OrderedIterable. collectWithIndex(ObjectIntToObjectFunction<? super T,? extends V> function)
Returns a new OrderedIterable using results obtained by applying the specified function to each element and its corresponding index.default <V,R extends java.util.Collection<V>>
ROrderedIterable. collectWithIndex(ObjectIntToObjectFunction<? super T,? extends V> function, R target)
Adds elements to the target Collection using results obtained by applying the specified function to each element and its corresponding index.default <V> ReversibleIterable<V>
ReversibleIterable. collectWithIndex(ObjectIntToObjectFunction<? super T,? extends V> function)
-
Uses of ObjectIntToObjectFunction in org.eclipse.collections.api.set.sorted
Methods in org.eclipse.collections.api.set.sorted with parameters of type ObjectIntToObjectFunction Modifier and Type Method Description default <V> ImmutableList<V>
ImmutableSortedSet. collectWithIndex(ObjectIntToObjectFunction<? super T,? extends V> function)
default <V> MutableList<V>
MutableSortedSet. collectWithIndex(ObjectIntToObjectFunction<? super T,? extends V> function)
default <V> ListIterable<V>
SortedSetIterable. collectWithIndex(ObjectIntToObjectFunction<? super T,? extends V> function)
-
Uses of ObjectIntToObjectFunction in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack with parameters of type ObjectIntToObjectFunction Modifier and Type Method Description default <V> ImmutableStack<V>
ImmutableStack. collectWithIndex(ObjectIntToObjectFunction<? super T,? extends V> function)
default <V> MutableStack<V>
MutableStack. collectWithIndex(ObjectIntToObjectFunction<? super T,? extends V> function)
default <V> StackIterable<V>
StackIterable. collectWithIndex(ObjectIntToObjectFunction<? super T,? extends V> function)
-
Uses of ObjectIntToObjectFunction in org.eclipse.collections.impl.bag.immutable
Methods in org.eclipse.collections.impl.bag.immutable with parameters of type ObjectIntToObjectFunction Modifier and Type Method Description <V> ImmutableBag<V>
AbstractImmutableBag. collectWithOccurrences(ObjectIntToObjectFunction<? super T,? extends V> function)
<V> ImmutableBag<V>
ImmutableEmptyBag. collectWithOccurrences(ObjectIntToObjectFunction<? super T,? extends V> function)
<V,R extends java.util.Collection<V>>
RImmutableEmptyBag. collectWithOccurrences(ObjectIntToObjectFunction<? super T,? extends V> function, R target)
<V,R extends java.util.Collection<V>>
RImmutableSingletonBag. collectWithOccurrences(ObjectIntToObjectFunction<? super T,? extends V> function, R target)
-
Uses of ObjectIntToObjectFunction in org.eclipse.collections.impl.bag.immutable.primitive
Methods in org.eclipse.collections.impl.bag.immutable.primitive with parameters of type ObjectIntToObjectFunction Modifier and Type Method Description <T> T
ImmutableIntEmptyBag. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
<T> T
ImmutableIntHashBag. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
<T> T
ImmutableIntSingletonBag. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
-
Uses of ObjectIntToObjectFunction in org.eclipse.collections.impl.bag.mutable
Methods in org.eclipse.collections.impl.bag.mutable with parameters of type ObjectIntToObjectFunction Modifier and Type Method Description <V> MutableBag<V>
AbstractMutableBag. collectWithOccurrences(ObjectIntToObjectFunction<? super T,? extends V> function)
<V> MutableBag<V>
MultiReaderHashBag. collectWithOccurrences(ObjectIntToObjectFunction<? super T,? extends V> function)
<V,R extends java.util.Collection<V>>
RMultiReaderHashBag. collectWithOccurrences(ObjectIntToObjectFunction<? super T,? extends V> function, R target)
<V> MutableBag<V>
MultiReaderHashBag.UntouchableMutableBag. collectWithOccurrences(ObjectIntToObjectFunction<? super T,? extends V> function)
<V,R extends java.util.Collection<V>>
RMultiReaderHashBag.UntouchableMutableBag. collectWithOccurrences(ObjectIntToObjectFunction<? super T,? extends V> function, R target)
<V> MutableBag<V>
SynchronizedBag. collectWithOccurrences(ObjectIntToObjectFunction<? super T,? extends V> function)
<V,R extends java.util.Collection<V>>
RSynchronizedBag. collectWithOccurrences(ObjectIntToObjectFunction<? super T,? extends V> function, R target)
<V> MutableBag<V>
UnmodifiableBag. collectWithOccurrences(ObjectIntToObjectFunction<? super T,? extends V> function)
<V,R extends java.util.Collection<V>>
RUnmodifiableBag. collectWithOccurrences(ObjectIntToObjectFunction<? super T,? extends V> function, R target)
-
Uses of ObjectIntToObjectFunction in org.eclipse.collections.impl.bag.mutable.primitive
Methods in org.eclipse.collections.impl.bag.mutable.primitive with parameters of type ObjectIntToObjectFunction Modifier and Type Method Description <T> T
IntHashBag. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
-
Uses of ObjectIntToObjectFunction in org.eclipse.collections.impl.bag.sorted.immutable
Methods in org.eclipse.collections.impl.bag.sorted.immutable with parameters of type ObjectIntToObjectFunction Modifier and Type Method Description <V> ImmutableList<V>
ImmutableEmptySortedBag. collectWithIndex(ObjectIntToObjectFunction<? super T,? extends V> function)
<V,R extends java.util.Collection<V>>
RImmutableEmptySortedBag. collectWithIndex(ObjectIntToObjectFunction<? super T,? extends V> function, R target)
<V> ImmutableList<V>
ImmutableSortedBagImpl. collectWithIndex(ObjectIntToObjectFunction<? super T,? extends V> function)
<V,R extends java.util.Collection<V>>
RImmutableSortedBagImpl. collectWithIndex(ObjectIntToObjectFunction<? super T,? extends V> function, R target)
<V> ImmutableList<V>
AbstractImmutableSortedBag. collectWithOccurrences(ObjectIntToObjectFunction<? super T,? extends V> function)
<V> ImmutableList<V>
ImmutableEmptySortedBag. collectWithOccurrences(ObjectIntToObjectFunction<? super T,? extends V> function)
-
Uses of ObjectIntToObjectFunction in org.eclipse.collections.impl.bag.sorted.mutable
Methods in org.eclipse.collections.impl.bag.sorted.mutable with parameters of type ObjectIntToObjectFunction Modifier and Type Method Description <V> MutableList<V>
AbstractMutableSortedBag. collectWithIndex(ObjectIntToObjectFunction<? super T,? extends V> function)
<V,R extends java.util.Collection<V>>
RAbstractMutableSortedBag. collectWithIndex(ObjectIntToObjectFunction<? super T,? extends V> function, R target)
<V> MutableList<V>
SynchronizedSortedBag. collectWithIndex(ObjectIntToObjectFunction<? super T,? extends V> function)
<V,R extends java.util.Collection<V>>
RSynchronizedSortedBag. collectWithIndex(ObjectIntToObjectFunction<? super T,? extends V> function, R target)
<V> MutableList<V>
UnmodifiableSortedBag. collectWithIndex(ObjectIntToObjectFunction<? super T,? extends V> function)
<V,R extends java.util.Collection<V>>
RUnmodifiableSortedBag. collectWithIndex(ObjectIntToObjectFunction<? super T,? extends V> function, R target)
<V> MutableList<V>
AbstractMutableSortedBag. collectWithOccurrences(ObjectIntToObjectFunction<? super T,? extends V> function)
<V> MutableList<V>
SynchronizedSortedBag. collectWithOccurrences(ObjectIntToObjectFunction<? super T,? extends V> function)
<V,R extends java.util.Collection<V>>
RSynchronizedSortedBag. collectWithOccurrences(ObjectIntToObjectFunction<? super T,? extends V> function, R target)
<V> MutableList<V>
UnmodifiableSortedBag. collectWithOccurrences(ObjectIntToObjectFunction<? super T,? extends V> function)
<V,R extends java.util.Collection<V>>
RUnmodifiableSortedBag. collectWithOccurrences(ObjectIntToObjectFunction<? super T,? extends V> function, R target)
-
Uses of ObjectIntToObjectFunction in org.eclipse.collections.impl.collection.mutable.primitive
Methods in org.eclipse.collections.impl.collection.mutable.primitive with parameters of type ObjectIntToObjectFunction Modifier and Type Method Description <T> T
AbstractSynchronizedIntCollection. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
<T> T
AbstractUnmodifiableIntCollection. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
-
Uses of ObjectIntToObjectFunction in org.eclipse.collections.impl.lazy.primitive
Methods in org.eclipse.collections.impl.lazy.primitive with parameters of type ObjectIntToObjectFunction Modifier and Type Method Description <T> T
AbstractLazyIntIterable. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
<T> T
LazyIntIterableAdapter. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
-
Uses of ObjectIntToObjectFunction in org.eclipse.collections.impl.list.immutable
Methods in org.eclipse.collections.impl.list.immutable with parameters of type ObjectIntToObjectFunction Modifier and Type Method Description <V> ImmutableList<V>
ImmutableArrayList. collectWithIndex(ObjectIntToObjectFunction<? super T,? extends V> function)
<V,R extends java.util.Collection<V>>
RImmutableArrayList. collectWithIndex(ObjectIntToObjectFunction<? super T,? extends V> function, R target)
-
Uses of ObjectIntToObjectFunction in org.eclipse.collections.impl.list.immutable.primitive
Methods in org.eclipse.collections.impl.list.immutable.primitive with parameters of type ObjectIntToObjectFunction Modifier and Type Method Description <T> T
ImmutableIntArrayList. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
<T> T
ImmutableIntEmptyList. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
<T> T
ImmutableIntSingletonList. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
-
Uses of ObjectIntToObjectFunction in org.eclipse.collections.impl.list.mutable
Methods in org.eclipse.collections.impl.list.mutable with parameters of type ObjectIntToObjectFunction Modifier and Type Method Description <V> MutableList<V>
FastList. collectWithIndex(ObjectIntToObjectFunction<? super T,? extends V> function)
<V,R extends java.util.Collection<V>>
RFastList. collectWithIndex(ObjectIntToObjectFunction<? super T,? extends V> function, R target)
<V> MutableList<V>
SynchronizedMutableList. collectWithIndex(ObjectIntToObjectFunction<? super T,? extends V> function)
<V,R extends java.util.Collection<V>>
RSynchronizedMutableList. collectWithIndex(ObjectIntToObjectFunction<? super T,? extends V> function, R target)
-
Uses of ObjectIntToObjectFunction in org.eclipse.collections.impl.list.mutable.primitive
Methods in org.eclipse.collections.impl.list.mutable.primitive with parameters of type ObjectIntToObjectFunction Modifier and Type Method Description <T> T
IntArrayList. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
-
Uses of ObjectIntToObjectFunction in org.eclipse.collections.impl.list.primitive
Methods in org.eclipse.collections.impl.list.primitive with parameters of type ObjectIntToObjectFunction Modifier and Type Method Description <T> T
IntInterval. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
-
Uses of ObjectIntToObjectFunction in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive with parameters of type ObjectIntToObjectFunction Modifier and Type Method Description <T> T
ImmutableByteIntEmptyMap. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
<T> T
ImmutableByteIntHashMap. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
<T> T
ImmutableByteIntSingletonMap. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
<T> T
ImmutableCharIntEmptyMap. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
<T> T
ImmutableCharIntHashMap. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
<T> T
ImmutableCharIntSingletonMap. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
<T> T
ImmutableDoubleIntEmptyMap. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
<T> T
ImmutableDoubleIntHashMap. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
<T> T
ImmutableDoubleIntSingletonMap. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
<T> T
ImmutableFloatIntEmptyMap. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
<T> T
ImmutableFloatIntHashMap. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
<T> T
ImmutableFloatIntSingletonMap. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
<T> T
ImmutableIntIntEmptyMap. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
<T> T
ImmutableIntIntHashMap. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
<T> T
ImmutableIntIntSingletonMap. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
<T> T
ImmutableLongIntEmptyMap. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
<T> T
ImmutableLongIntHashMap. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
<T> T
ImmutableLongIntSingletonMap. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
<T> T
ImmutableObjectIntEmptyMap. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
<T> T
ImmutableObjectIntHashMap. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
<T> T
ImmutableObjectIntSingletonMap. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
<T> T
ImmutableShortIntEmptyMap. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
<T> T
ImmutableShortIntHashMap. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
<T> T
ImmutableShortIntSingletonMap. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
-
Uses of ObjectIntToObjectFunction in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type ObjectIntToObjectFunction Modifier and Type Method Description <T> T
AbstractMutableIntKeySet. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
<T> T
AbstractMutableIntValuesMap.AbstractIntValuesCollection. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
<V> V
ByteIntHashMap. injectInto(V injectedValue, ObjectIntToObjectFunction<? super V,? extends V> function)
<V> V
CharIntHashMap. injectInto(V injectedValue, ObjectIntToObjectFunction<? super V,? extends V> function)
<V> V
DoubleIntHashMap. injectInto(V injectedValue, ObjectIntToObjectFunction<? super V,? extends V> function)
<V> V
FloatIntHashMap. injectInto(V injectedValue, ObjectIntToObjectFunction<? super V,? extends V> function)
<T> T
ImmutableIntIntMapKeySet. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
<T> T
ImmutableIntMapKeySet. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
<T> T
IntBooleanHashMap.KeysView. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
<V> V
IntIntHashMap. injectInto(V injectedValue, ObjectIntToObjectFunction<? super V,? extends V> function)
<V> V
LongIntHashMap. injectInto(V injectedValue, ObjectIntToObjectFunction<? super V,? extends V> function)
<V> V
ObjectIntHashMap. injectInto(V injectedValue, ObjectIntToObjectFunction<? super V,? extends V> function)
<T> T
ObjectIntHashMap.ValuesCollection. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
<V> V
ObjectIntHashMapWithHashingStrategy. injectInto(V injectedValue, ObjectIntToObjectFunction<? super V,? extends V> function)
<T> T
ObjectIntHashMapWithHashingStrategy.ValuesCollection. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
<V> V
ShortIntHashMap. injectInto(V injectedValue, ObjectIntToObjectFunction<? super V,? extends V> function)
<T> T
SynchronizedByteIntMap. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
<T> T
SynchronizedCharIntMap. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
<T> T
SynchronizedDoubleIntMap. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
<T> T
SynchronizedFloatIntMap. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
<T> T
SynchronizedIntIntMap. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
<T> T
SynchronizedLongIntMap. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
<T> T
SynchronizedObjectIntMap. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
<T> T
SynchronizedShortIntMap. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
<T> T
UnmodifiableByteIntMap. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
<T> T
UnmodifiableCharIntMap. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
<T> T
UnmodifiableDoubleIntMap. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
<T> T
UnmodifiableFloatIntMap. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
<T> T
UnmodifiableIntIntMap. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
<T> T
UnmodifiableLongIntMap. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
<T> T
UnmodifiableObjectIntMap. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
<T> T
UnmodifiableShortIntMap. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
-
Uses of ObjectIntToObjectFunction in org.eclipse.collections.impl.map.ordered.mutable
Methods in org.eclipse.collections.impl.map.ordered.mutable with parameters of type ObjectIntToObjectFunction Modifier and Type Method Description <V1> ReversibleIterable<V1>
UnmodifiableMutableOrderedMap. collectWithIndex(ObjectIntToObjectFunction<? super V,? extends V1> function)
<VV,R extends java.util.Collection<VV>>
RUnmodifiableMutableOrderedMap. collectWithIndex(ObjectIntToObjectFunction<? super V,? extends VV> function, R target)
-
Uses of ObjectIntToObjectFunction in org.eclipse.collections.impl.map.sorted.mutable
Methods in org.eclipse.collections.impl.map.sorted.mutable with parameters of type ObjectIntToObjectFunction Modifier and Type Method Description <R> MutableList<R>
SynchronizedSortedMap. collectWithIndex(ObjectIntToObjectFunction<? super V,? extends R> function)
<V1,R extends java.util.Collection<V1>>
RSynchronizedSortedMap. collectWithIndex(ObjectIntToObjectFunction<? super V,? extends V1> function, R target)
<R> MutableList<R>
UnmodifiableTreeMap. collectWithIndex(ObjectIntToObjectFunction<? super V,? extends R> function)
<V1,R extends java.util.Collection<V1>>
RUnmodifiableTreeMap. collectWithIndex(ObjectIntToObjectFunction<? super V,? extends V1> function, R target)
-
Uses of ObjectIntToObjectFunction in org.eclipse.collections.impl.primitive
Methods in org.eclipse.collections.impl.primitive with parameters of type ObjectIntToObjectFunction Modifier and Type Method Description <T> T
SynchronizedIntIterable. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
-
Uses of ObjectIntToObjectFunction in org.eclipse.collections.impl.set.immutable.primitive
Methods in org.eclipse.collections.impl.set.immutable.primitive with parameters of type ObjectIntToObjectFunction Modifier and Type Method Description <T> T
ImmutableIntEmptySet. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
<T> T
ImmutableIntSingletonSet. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
-
Uses of ObjectIntToObjectFunction in org.eclipse.collections.impl.set.mutable.primitive
Methods in org.eclipse.collections.impl.set.mutable.primitive with parameters of type ObjectIntToObjectFunction Modifier and Type Method Description <T> T
IntHashSet.ImmutableIntHashSet. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
<T> T
IntHashSet. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
-
Uses of ObjectIntToObjectFunction in org.eclipse.collections.impl.set.sorted.immutable
Methods in org.eclipse.collections.impl.set.sorted.immutable with parameters of type ObjectIntToObjectFunction Modifier and Type Method Description <V> ImmutableList<V>
ImmutableEmptySortedSet. collectWithIndex(ObjectIntToObjectFunction<? super T,? extends V> function)
<V,R extends java.util.Collection<V>>
RImmutableEmptySortedSet. collectWithIndex(ObjectIntToObjectFunction<? super T,? extends V> function, R target)
<V> ImmutableList<V>
ImmutableTreeSet. collectWithIndex(ObjectIntToObjectFunction<? super T,? extends V> function)
-
Uses of ObjectIntToObjectFunction in org.eclipse.collections.impl.set.sorted.mutable
Methods in org.eclipse.collections.impl.set.sorted.mutable with parameters of type ObjectIntToObjectFunction Modifier and Type Method Description <V> MutableList<V>
SynchronizedSortedSet. collectWithIndex(ObjectIntToObjectFunction<? super T,? extends V> function)
<V,R extends java.util.Collection<V>>
RSynchronizedSortedSet. collectWithIndex(ObjectIntToObjectFunction<? super T,? extends V> function, R target)
<V> MutableList<V>
UnmodifiableSortedSet. collectWithIndex(ObjectIntToObjectFunction<? super T,? extends V> function)
<V,R extends java.util.Collection<V>>
RUnmodifiableSortedSet. collectWithIndex(ObjectIntToObjectFunction<? super T,? extends V> function, R target)
-
Uses of ObjectIntToObjectFunction in org.eclipse.collections.impl.stack.immutable.primitive
Methods in org.eclipse.collections.impl.stack.immutable.primitive with parameters of type ObjectIntToObjectFunction Modifier and Type Method Description <T> T
ImmutableIntEmptyStack. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
<T> T
ImmutableIntSingletonStack. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
-
Uses of ObjectIntToObjectFunction in org.eclipse.collections.impl.stack.mutable
Methods in org.eclipse.collections.impl.stack.mutable with parameters of type ObjectIntToObjectFunction Modifier and Type Method Description <V> MutableStack<V>
SynchronizedStack. collectWithIndex(ObjectIntToObjectFunction<? super T,? extends V> function)
<V,R extends java.util.Collection<V>>
RSynchronizedStack. collectWithIndex(ObjectIntToObjectFunction<? super T,? extends V> function, R target)
<V> MutableStack<V>
UnmodifiableStack. collectWithIndex(ObjectIntToObjectFunction<? super T,? extends V> function)
-
Uses of ObjectIntToObjectFunction in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive with parameters of type ObjectIntToObjectFunction Modifier and Type Method Description <T> T
SynchronizedIntStack. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
<T> T
UnmodifiableIntStack. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
-
Uses of ObjectIntToObjectFunction in org.eclipse.collections.impl.stack.primitive
Methods in org.eclipse.collections.impl.stack.primitive with parameters of type ObjectIntToObjectFunction Modifier and Type Method Description <V> V
AbstractIntStack. injectInto(V injectedValue, ObjectIntToObjectFunction<? super V,? extends V> function)
-
Uses of ObjectIntToObjectFunction in org.eclipse.collections.impl.string.immutable
Methods in org.eclipse.collections.impl.string.immutable with parameters of type ObjectIntToObjectFunction Modifier and Type Method Description <T> T
CodePointAdapter. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
<T> T
CodePointList. injectInto(T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
-
Uses of ObjectIntToObjectFunction in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility with parameters of type ObjectIntToObjectFunction Modifier and Type Method Description static <T,A>
MutableList<A>ListIterate. collectWithIndex(java.util.List<T> list, ObjectIntToObjectFunction<? super T,? extends A> function)
static <T,A,R extends java.util.Collection<A>>
RListIterate. collectWithIndex(java.util.List<T> list, ObjectIntToObjectFunction<? super T,? extends A> function, R targetCollection)
-
Uses of ObjectIntToObjectFunction in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal with parameters of type ObjectIntToObjectFunction Modifier and Type Method Description static <T,V,R extends java.util.Collection<V>>
RInternalArrayIterate. collectWithIndex(T[] array, int size, ObjectIntToObjectFunction<? super T,? extends V> function, R target)
static <T,A>
MutableList<A>RandomAccessListIterate. collectWithIndex(java.util.List<T> list, ObjectIntToObjectFunction<? super T,? extends A> function)
static <T,A,R extends java.util.Collection<A>>
RRandomAccessListIterate. collectWithIndex(java.util.List<T> list, ObjectIntToObjectFunction<? super T,? extends A> function, R targetCollection)
-
Uses of ObjectIntToObjectFunction in org.eclipse.collections.impl.utility.internal.primitive
Methods in org.eclipse.collections.impl.utility.internal.primitive with parameters of type ObjectIntToObjectFunction Modifier and Type Method Description static <T> T
IntIterableIterate. injectInto(IntIterable iterable, T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
static <T> T
IntIteratorIterate. injectInto(IntIterator iterator, T injectedValue, ObjectIntToObjectFunction<? super T,? extends T> function)
-