Uses of Interface
org.eclipse.collections.api.block.function.primitive.ObjectIntToObjectFunction
Packages that use ObjectIntToObjectFunction
Package
Description
This package contains interfaces for Eclipse Collections API.
This package contains interfaces for Bag API.
This package contains interfaces for SortedBag API.
This package contains interfaces for list API which enhance the performance and functionality of
List.This package contains mutable and immutable sorted map interfaces.
This package contains interfaces for sorted set API.
This package contains interfaces for stack API.
-
Uses of ObjectIntToObjectFunction in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type ObjectIntToObjectFunctionModifier and TypeMethodDescription<T> TIntIterable.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 ObjectIntToObjectFunctionModifier and TypeMethodDescription<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 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 ObjectIntToObjectFunctionModifier and TypeMethodDescriptiondefault <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 ObjectIntToObjectFunctionModifier and TypeMethodDescriptiondefault <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 ObjectIntToObjectFunctionModifier and TypeMethodDescriptiondefault <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 ObjectIntToObjectFunctionModifier and TypeMethodDescriptiondefault <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 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 ObjectIntToObjectFunctionModifier and TypeMethodDescriptiondefault <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 ObjectIntToObjectFunctionModifier and TypeMethodDescriptiondefault <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)