Uses of Interface
org.eclipse.collections.api.block.function.primitive.IntToObjectFunction
-
Packages that use IntToObjectFunction Package Description org.eclipse.collections.api This package contains interfaces for Eclipse Collections API.org.eclipse.collections.api.bag.primitive This package contains API for Primitive Bags with Mutable and Immutable variants.org.eclipse.collections.api.collection.primitive This package contains mutable and immutable primitive collection API.org.eclipse.collections.api.list.primitive This package contains mutable and immutable primitive list 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.primitive org.eclipse.collections.api.set.primitive This package contains API for mutable and immutable primitive sets.org.eclipse.collections.api.stack.primitive This package contains mutable and immutable primitive stack API. -
-
Uses of IntToObjectFunction in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type IntToObjectFunction Modifier and Type Method Description <V> RichIterable<V>IntIterable. collect(IntToObjectFunction<? extends V> function)Returns a new collection with the results of applying the specified function on each element of the source collection.default <V,R extends Collection<V>>
RIntIterable. collect(IntToObjectFunction<? extends V> function, R target)Same asIntIterable.collect(IntToObjectFunction), only the results are added to the target Collection.<V> LazyIterable<V>LazyIntIterable. collect(IntToObjectFunction<? extends V> function)default <V,R extends Collection<V>>
RIntIterable. flatCollect(IntToObjectFunction<? extends Iterable<V>> function, R target)flatCollectis a special case ofIntIterable.collect(IntToObjectFunction).<V> LazyIterable<V>LazyIntIterable. flatCollect(IntToObjectFunction<? extends Iterable<V>> function)default <T> MutableIntListIntIterable. toSortedListBy(IntToObjectFunction<T> function)Converts the collection to a MutableIntListImplementation sorted based on the natural order of the key returned byfunction.default <T> MutableIntListIntIterable. toSortedListBy(IntToObjectFunction<T> function, Comparator<? super T> comparator)Converts the collection to a MutableIntList implementation, which is sorted based on the key returned byfunctionusing the providedcomparator. -
Uses of IntToObjectFunction in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive with parameters of type IntToObjectFunction Modifier and Type Method Description <V> ImmutableBag<V>ImmutableIntBag. collect(IntToObjectFunction<? extends V> function)<V> Bag<V>IntBag. collect(IntToObjectFunction<? extends V> function)<V> MutableBag<V>MutableIntBag. collect(IntToObjectFunction<? extends V> function) -
Uses of IntToObjectFunction in org.eclipse.collections.api.collection.primitive
Methods in org.eclipse.collections.api.collection.primitive with parameters of type IntToObjectFunction Modifier and Type Method Description <V> ImmutableCollection<V>ImmutableIntCollection. collect(IntToObjectFunction<? extends V> function)<V> MutableCollection<V>MutableIntCollection. collect(IntToObjectFunction<? extends V> function) -
Uses of IntToObjectFunction in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive with parameters of type IntToObjectFunction Modifier and Type Method Description <V> ImmutableList<V>ImmutableIntList. collect(IntToObjectFunction<? extends V> function)<V> ListIterable<V>IntList. collect(IntToObjectFunction<? extends V> function)<V> MutableList<V>MutableIntList. collect(IntToObjectFunction<? extends V> function)default <T> MutableIntListMutableIntList. sortThisBy(IntToObjectFunction<T> function)Sorts the internal data structure of this list based on the natural order of the key returned byfunction.default <T> MutableIntListMutableIntList. sortThisBy(IntToObjectFunction<T> function, Comparator<? super T> comparator)Sorts the internal data structure of this list based on the key returned byfunctionusing the providedcomparator. -
Uses of IntToObjectFunction in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type IntToObjectFunction Modifier and Type Method Description <V> ImmutableBag<V>ImmutableByteIntMap. collect(IntToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableCharIntMap. collect(IntToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableDoubleIntMap. collect(IntToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableFloatIntMap. collect(IntToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableIntIntMap. collect(IntToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableLongIntMap. collect(IntToObjectFunction<? extends V> function)<V> ImmutableCollection<V>ImmutableObjectIntMap. collect(IntToObjectFunction<? extends V> function)<V> ImmutableBag<V>ImmutableShortIntMap. collect(IntToObjectFunction<? extends V> function)<V> Bag<V>IntValuesMap. collect(IntToObjectFunction<? extends V> function)<V> MutableBag<V>MutableIntValuesMap. collect(IntToObjectFunction<? extends V> function)<V> MutableCollection<V>MutableObjectIntMap. collect(IntToObjectFunction<? extends V> function)VMutableIntObjectMap. getIfAbsentPutWithKey(int key, IntToObjectFunction<? extends V> function)Retrieves the value associated with the key if one exists; if it does not, associates the result of invoking the value function with the key. -
Uses of IntToObjectFunction in org.eclipse.collections.api.ordered.primitive
Methods in org.eclipse.collections.api.ordered.primitive with parameters of type IntToObjectFunction Modifier and Type Method Description <V> OrderedIterable<V>OrderedIntIterable. collect(IntToObjectFunction<? extends V> function)<V> ReversibleIterable<V>ReversibleIntIterable. collect(IntToObjectFunction<? extends V> function) -
Uses of IntToObjectFunction in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive with parameters of type IntToObjectFunction Modifier and Type Method Description <V> ImmutableSet<V>ImmutableIntSet. collect(IntToObjectFunction<? extends V> function)<V> SetIterable<V>IntSet. collect(IntToObjectFunction<? extends V> function)<V> MutableSet<V>MutableIntSet. collect(IntToObjectFunction<? extends V> function) -
Uses of IntToObjectFunction in org.eclipse.collections.api.stack.primitive
Methods in org.eclipse.collections.api.stack.primitive with parameters of type IntToObjectFunction Modifier and Type Method Description <V> ImmutableStack<V>ImmutableIntStack. collect(IntToObjectFunction<? extends V> function)<V> StackIterable<V>IntStack. collect(IntToObjectFunction<? extends V> function)<V> MutableStack<V>MutableIntStack. collect(IntToObjectFunction<? extends V> function)
-