Uses of Interface
org.eclipse.collections.api.block.function.primitive.ShortToObjectFunction
Packages that use ShortToObjectFunction
Package
Description
This package contains interfaces for Eclipse Collections API.
This package contains API for Primitive Bags with Mutable and Immutable variants.
This package contains mutable and immutable primitive collection API.
This package contains mutable and immutable primitive list API.
This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
This package contains API for mutable and immutable primitive sets.
This package contains mutable and immutable primitive stack API.
-
Uses of ShortToObjectFunction in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type ShortToObjectFunctionModifier and TypeMethodDescription<V> LazyIterable<V>LazyShortIterable.collect(ShortToObjectFunction<? extends V> function) <V> RichIterable<V>ShortIterable.collect(ShortToObjectFunction<? 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>>
RShortIterable.collect(ShortToObjectFunction<? extends V> function, R target) Same asShortIterable.collect(ShortToObjectFunction), only the results are added to the target Collection.<V> LazyIterable<V>LazyShortIterable.flatCollect(ShortToObjectFunction<? extends Iterable<V>> function) default <V,R extends Collection<V>>
RShortIterable.flatCollect(ShortToObjectFunction<? extends Iterable<V>> function, R target) flatCollectis a special case ofShortIterable.collect(ShortToObjectFunction).default <T> MutableShortListShortIterable.toSortedListBy(ShortToObjectFunction<T> function) Converts the collection to a MutableShortListImplementation sorted based on the natural order of the key returned byfunction.default <T> MutableShortListShortIterable.toSortedListBy(ShortToObjectFunction<T> function, Comparator<? super T> comparator) Converts the collection to a MutableShortList implementation, which is sorted based on the key returned byfunctionusing the providedcomparator. -
Uses of ShortToObjectFunction in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive with parameters of type ShortToObjectFunctionModifier and TypeMethodDescription<V> ImmutableBag<V>ImmutableShortBag.collect(ShortToObjectFunction<? extends V> function) <V> MutableBag<V>MutableShortBag.collect(ShortToObjectFunction<? extends V> function) <V> Bag<V>ShortBag.collect(ShortToObjectFunction<? extends V> function) -
Uses of ShortToObjectFunction in org.eclipse.collections.api.collection.primitive
Methods in org.eclipse.collections.api.collection.primitive with parameters of type ShortToObjectFunctionModifier and TypeMethodDescription<V> ImmutableCollection<V>ImmutableShortCollection.collect(ShortToObjectFunction<? extends V> function) <V> MutableCollection<V>MutableShortCollection.collect(ShortToObjectFunction<? extends V> function) -
Uses of ShortToObjectFunction in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive with parameters of type ShortToObjectFunctionModifier and TypeMethodDescription<V> ImmutableList<V>ImmutableShortList.collect(ShortToObjectFunction<? extends V> function) <V> MutableList<V>MutableShortList.collect(ShortToObjectFunction<? extends V> function) <V> ListIterable<V>ShortList.collect(ShortToObjectFunction<? extends V> function) default <T> MutableShortListMutableShortList.sortThisBy(ShortToObjectFunction<T> function) Sorts the internal data structure of this list based on the natural order of the key returned byfunction.default <T> MutableShortListMutableShortList.sortThisBy(ShortToObjectFunction<T> function, Comparator<? super T> comparator) Sorts the internal data structure of this list based on the key returned byfunctionusing the providedcomparator. -
Uses of ShortToObjectFunction in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type ShortToObjectFunctionModifier and TypeMethodDescription<V> ImmutableBag<V>ImmutableByteShortMap.collect(ShortToObjectFunction<? extends V> function) <V> ImmutableBag<V>ImmutableCharShortMap.collect(ShortToObjectFunction<? extends V> function) <V> ImmutableBag<V>ImmutableDoubleShortMap.collect(ShortToObjectFunction<? extends V> function) <V> ImmutableBag<V>ImmutableFloatShortMap.collect(ShortToObjectFunction<? extends V> function) <V> ImmutableBag<V>ImmutableIntShortMap.collect(ShortToObjectFunction<? extends V> function) <V> ImmutableBag<V>ImmutableLongShortMap.collect(ShortToObjectFunction<? extends V> function) <V> ImmutableCollection<V>ImmutableObjectShortMap.collect(ShortToObjectFunction<? extends V> function) <V> ImmutableBag<V>ImmutableShortShortMap.collect(ShortToObjectFunction<? extends V> function) <V> MutableCollection<V>MutableObjectShortMap.collect(ShortToObjectFunction<? extends V> function) <V> MutableBag<V>MutableShortValuesMap.collect(ShortToObjectFunction<? extends V> function) <V> Bag<V>ShortValuesMap.collect(ShortToObjectFunction<? extends V> function) MutableShortObjectMap.getIfAbsentPutWithKey(short key, ShortToObjectFunction<? 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 ShortToObjectFunction in org.eclipse.collections.api.ordered.primitive
Methods in org.eclipse.collections.api.ordered.primitive with parameters of type ShortToObjectFunctionModifier and TypeMethodDescription<V> OrderedIterable<V>OrderedShortIterable.collect(ShortToObjectFunction<? extends V> function) <V> ReversibleIterable<V>ReversibleShortIterable.collect(ShortToObjectFunction<? extends V> function) -
Uses of ShortToObjectFunction in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive with parameters of type ShortToObjectFunctionModifier and TypeMethodDescription<V> ImmutableSet<V>ImmutableShortSet.collect(ShortToObjectFunction<? extends V> function) <V> MutableSet<V>MutableShortSet.collect(ShortToObjectFunction<? extends V> function) <V> SetIterable<V>ShortSet.collect(ShortToObjectFunction<? extends V> function) -
Uses of ShortToObjectFunction in org.eclipse.collections.api.stack.primitive
Methods in org.eclipse.collections.api.stack.primitive with parameters of type ShortToObjectFunctionModifier and TypeMethodDescription<V> ImmutableStack<V>ImmutableShortStack.collect(ShortToObjectFunction<? extends V> function) <V> MutableStack<V>MutableShortStack.collect(ShortToObjectFunction<? extends V> function) <V> StackIterable<V>ShortStack.collect(ShortToObjectFunction<? extends V> function)