Uses of Interface
org.eclipse.collections.api.block.function.primitive.ShortToObjectFunction
-
Packages that use ShortToObjectFunction 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.org.eclipse.collections.impl.bag.immutable.primitive This package contains implementations of the immutable primitive bag interfaces.org.eclipse.collections.impl.bag.mutable.primitive This package contains implementations of the mutable primitive bag interfaces.org.eclipse.collections.impl.block.function.primitive This package contains implementations of primitive functions.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.primitive This package contains implementations of immutable primitive list interfaces and immutable primitive list factory interfaces.org.eclipse.collections.impl.list.mutable.primitive This package contains implementations of the mutable 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.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.stack.immutable.primitive This package contains implementations of the immutable primitive stack interfaces.org.eclipse.collections.impl.stack.mutable.primitive This package contains implementations of the mutable primitive stack interfaces.org.eclipse.collections.impl.utility.internal.primitive org.eclipse.collections.impl.utility.primitive -
-
Uses of ShortToObjectFunction in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type ShortToObjectFunction Modifier and Type Method Description <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 java.util.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 java.lang.Iterable<V>> function)
default <V,R extends java.util.Collection<V>>
RShortIterable. flatCollect(ShortToObjectFunction<? extends java.lang.Iterable<V>> function, R target)
flatCollect
is a special case ofShortIterable.collect(ShortToObjectFunction)
.default <T> MutableShortList
ShortIterable. toSortedListBy(ShortToObjectFunction<T> function)
Converts the collection to a MutableShortListImplementation sorted based on the natural order of the key returned byfunction
.default <T> MutableShortList
ShortIterable. toSortedListBy(ShortToObjectFunction<T> function, java.util.Comparator<? super T> comparator)
Converts the collection to a MutableShortList implementation, which is sorted based on the key returned byfunction
using the providedcomparator
. -
Uses of ShortToObjectFunction in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive with parameters of type ShortToObjectFunction Modifier and Type Method Description <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 ShortToObjectFunction Modifier and Type Method Description <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 ShortToObjectFunction Modifier and Type Method Description <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> MutableShortList
MutableShortList. sortThisBy(ShortToObjectFunction<T> function)
Sorts the internal data structure of this list based on the natural order of the key returned byfunction
.default <T> MutableShortList
MutableShortList. sortThisBy(ShortToObjectFunction<T> function, java.util.Comparator<? super T> comparator)
Sorts the internal data structure of this list based on the key returned byfunction
using the providedcomparator
. -
Uses of ShortToObjectFunction in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type ShortToObjectFunction Modifier and Type Method Description <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)
V
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 ShortToObjectFunction Modifier and Type Method Description <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 ShortToObjectFunction Modifier and Type Method Description <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 ShortToObjectFunction Modifier and Type Method Description <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)
-
Uses of ShortToObjectFunction in org.eclipse.collections.impl.bag.immutable.primitive
Methods in org.eclipse.collections.impl.bag.immutable.primitive with parameters of type ShortToObjectFunction Modifier and Type Method Description <V> ImmutableBag<V>
ImmutableShortEmptyBag. collect(ShortToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableShortHashBag. collect(ShortToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableShortSingletonBag. collect(ShortToObjectFunction<? extends V> function)
-
Uses of ShortToObjectFunction in org.eclipse.collections.impl.bag.mutable.primitive
Methods in org.eclipse.collections.impl.bag.mutable.primitive with parameters of type ShortToObjectFunction Modifier and Type Method Description <V> MutableBag<V>
ShortHashBag. collect(ShortToObjectFunction<? extends V> function)
<V> MutableBag<V>
SynchronizedShortBag. collect(ShortToObjectFunction<? extends V> function)
<V> MutableBag<V>
UnmodifiableShortBag. collect(ShortToObjectFunction<? extends V> function)
-
Uses of ShortToObjectFunction in org.eclipse.collections.impl.block.function.primitive
Classes in org.eclipse.collections.impl.block.function.primitive that implement ShortToObjectFunction Modifier and Type Class Description class
ShortCaseFunction<V>
This file was automatically generated from template file primitiveCaseFunction.stg.Fields in org.eclipse.collections.impl.block.function.primitive declared as ShortToObjectFunction Modifier and Type Field Description private ShortToObjectFunction<? extends V>
ShortCaseFunction. defaultFunction
Fields in org.eclipse.collections.impl.block.function.primitive with type parameters of type ShortToObjectFunction Modifier and Type Field Description private MutableList<Pair<ShortPredicate,ShortToObjectFunction<? extends V>>>
ShortCaseFunction. predicateFunctions
Methods in org.eclipse.collections.impl.block.function.primitive with parameters of type ShortToObjectFunction Modifier and Type Method Description ShortCaseFunction<V>
ShortCaseFunction. addCase(ShortPredicate predicate, ShortToObjectFunction<? extends V> function)
ShortCaseFunction<V>
ShortCaseFunction. setDefault(ShortToObjectFunction<? extends V> function)
Constructors in org.eclipse.collections.impl.block.function.primitive with parameters of type ShortToObjectFunction Constructor Description ShortCaseFunction(ShortToObjectFunction<? extends V> newDefaultFunction)
-
Uses of ShortToObjectFunction in org.eclipse.collections.impl.collection.mutable.primitive
Methods in org.eclipse.collections.impl.collection.mutable.primitive with parameters of type ShortToObjectFunction Modifier and Type Method Description <V> MutableCollection<V>
AbstractSynchronizedShortCollection. collect(ShortToObjectFunction<? extends V> function)
<V> MutableCollection<V>
AbstractUnmodifiableShortCollection. collect(ShortToObjectFunction<? extends V> function)
-
Uses of ShortToObjectFunction in org.eclipse.collections.impl.lazy.primitive
Fields in org.eclipse.collections.impl.lazy.primitive declared as ShortToObjectFunction Modifier and Type Field Description private ShortToObjectFunction<? extends V>
CollectShortToObjectIterable. function
private ShortToObjectFunction<? extends java.lang.Iterable<V>>
FlatCollectShortToObjectIterable.FlatCollectShortIterator. function
private ShortToObjectFunction<? extends java.lang.Iterable<V>>
FlatCollectShortToObjectIterable. function
Methods in org.eclipse.collections.impl.lazy.primitive with parameters of type ShortToObjectFunction Modifier and Type Method Description <V> LazyIterable<V>
AbstractLazyShortIterable. collect(ShortToObjectFunction<? extends V> function)
<V> LazyIterable<V>
AbstractLazyShortIterable. flatCollect(ShortToObjectFunction<? extends java.lang.Iterable<V>> function)
Constructors in org.eclipse.collections.impl.lazy.primitive with parameters of type ShortToObjectFunction Constructor Description CollectShortToObjectIterable(ShortIterable iterable, ShortToObjectFunction<? extends V> function)
FlatCollectShortIterator(ShortIterator newIterator, ShortToObjectFunction<? extends java.lang.Iterable<V>> newFunction)
FlatCollectShortIterator(ShortIterable iterable, ShortToObjectFunction<? extends java.lang.Iterable<V>> newFunction)
FlatCollectShortToObjectIterable(ShortIterable iterable, ShortToObjectFunction<? extends java.lang.Iterable<V>> function)
-
Uses of ShortToObjectFunction in org.eclipse.collections.impl.list.immutable.primitive
Methods in org.eclipse.collections.impl.list.immutable.primitive with parameters of type ShortToObjectFunction Modifier and Type Method Description <V> ImmutableList<V>
ImmutableShortArrayList. collect(ShortToObjectFunction<? extends V> function)
<V,R extends java.util.Collection<V>>
RImmutableShortArrayList. collect(ShortToObjectFunction<? extends V> function, R target)
<V> ImmutableList<V>
ImmutableShortEmptyList. collect(ShortToObjectFunction<? extends V> function)
<V> ImmutableList<V>
ImmutableShortSingletonList. collect(ShortToObjectFunction<? extends V> function)
-
Uses of ShortToObjectFunction in org.eclipse.collections.impl.list.mutable.primitive
Methods in org.eclipse.collections.impl.list.mutable.primitive with parameters of type ShortToObjectFunction Modifier and Type Method Description <V> MutableList<V>
ShortArrayList. collect(ShortToObjectFunction<? extends V> function)
<V,R extends java.util.Collection<V>>
RShortArrayList. collect(ShortToObjectFunction<? extends V> function, R target)
<V> MutableList<V>
SynchronizedShortList. collect(ShortToObjectFunction<? extends V> function)
<V> MutableList<V>
UnmodifiableShortList. collect(ShortToObjectFunction<? extends V> function)
<T> MutableShortList
SynchronizedShortList. sortThisBy(ShortToObjectFunction<T> function)
<T> MutableShortList
SynchronizedShortList. sortThisBy(ShortToObjectFunction<T> function, java.util.Comparator<? super T> comparator)
-
Uses of ShortToObjectFunction in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive with parameters of type ShortToObjectFunction Modifier and Type Method Description <V> ImmutableBag<V>
ImmutableByteShortEmptyMap. collect(ShortToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableByteShortHashMap. collect(ShortToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableByteShortSingletonMap. collect(ShortToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableCharShortEmptyMap. collect(ShortToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableCharShortHashMap. collect(ShortToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableCharShortSingletonMap. collect(ShortToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableDoubleShortEmptyMap. collect(ShortToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableDoubleShortHashMap. collect(ShortToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableDoubleShortSingletonMap. collect(ShortToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableFloatShortEmptyMap. collect(ShortToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableFloatShortHashMap. collect(ShortToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableFloatShortSingletonMap. collect(ShortToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableIntShortEmptyMap. collect(ShortToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableIntShortHashMap. collect(ShortToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableIntShortSingletonMap. collect(ShortToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableLongShortEmptyMap. collect(ShortToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableLongShortHashMap. collect(ShortToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableLongShortSingletonMap. collect(ShortToObjectFunction<? extends V> function)
<V> ImmutableCollection<V>
ImmutableObjectShortEmptyMap. collect(ShortToObjectFunction<? extends V> function)
<V> ImmutableCollection<V>
ImmutableObjectShortHashMap. collect(ShortToObjectFunction<? extends V> function)
<V> ImmutableCollection<V>
ImmutableObjectShortSingletonMap. collect(ShortToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableShortShortEmptyMap. collect(ShortToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableShortShortHashMap. collect(ShortToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableShortShortSingletonMap. collect(ShortToObjectFunction<? extends V> function)
-
Uses of ShortToObjectFunction in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type ShortToObjectFunction Modifier and Type Method Description <V> MutableSet<V>
AbstractMutableShortKeySet. collect(ShortToObjectFunction<? extends V> function)
<V> MutableCollection<V>
AbstractMutableShortValuesMap.AbstractShortValuesCollection. collect(ShortToObjectFunction<? extends V> function)
<V> MutableBag<V>
AbstractMutableShortValuesMap. collect(ShortToObjectFunction<? extends V> function)
<V> ImmutableSet<V>
ImmutableShortMapKeySet. collect(ShortToObjectFunction<? extends V> function)
<V> ImmutableSet<V>
ImmutableShortShortMapKeySet. collect(ShortToObjectFunction<? extends V> function)
<V> MutableCollection<V>
ObjectShortHashMap. collect(ShortToObjectFunction<? extends V> function)
<V> MutableCollection<V>
ObjectShortHashMap.ValuesCollection. collect(ShortToObjectFunction<? extends V> function)
<V> MutableCollection<V>
ObjectShortHashMapWithHashingStrategy. collect(ShortToObjectFunction<? extends V> function)
<V> MutableCollection<V>
ObjectShortHashMapWithHashingStrategy.ValuesCollection. collect(ShortToObjectFunction<? extends V> function)
<V> MutableBag<V>
SynchronizedByteShortMap. collect(ShortToObjectFunction<? extends V> function)
<V> MutableBag<V>
SynchronizedCharShortMap. collect(ShortToObjectFunction<? extends V> function)
<V> MutableBag<V>
SynchronizedDoubleShortMap. collect(ShortToObjectFunction<? extends V> function)
<V> MutableBag<V>
SynchronizedFloatShortMap. collect(ShortToObjectFunction<? extends V> function)
<V> MutableBag<V>
SynchronizedIntShortMap. collect(ShortToObjectFunction<? extends V> function)
<V> MutableBag<V>
SynchronizedLongShortMap. collect(ShortToObjectFunction<? extends V> function)
<V1> MutableCollection<V1>
SynchronizedObjectShortMap. collect(ShortToObjectFunction<? extends V1> function)
<V> MutableBag<V>
SynchronizedShortShortMap. collect(ShortToObjectFunction<? extends V> function)
<V> MutableBag<V>
UnmodifiableByteShortMap. collect(ShortToObjectFunction<? extends V> function)
<V> MutableBag<V>
UnmodifiableCharShortMap. collect(ShortToObjectFunction<? extends V> function)
<V> MutableBag<V>
UnmodifiableDoubleShortMap. collect(ShortToObjectFunction<? extends V> function)
<V> MutableBag<V>
UnmodifiableFloatShortMap. collect(ShortToObjectFunction<? extends V> function)
<V> MutableBag<V>
UnmodifiableIntShortMap. collect(ShortToObjectFunction<? extends V> function)
<V> MutableBag<V>
UnmodifiableLongShortMap. collect(ShortToObjectFunction<? extends V> function)
<V1> MutableCollection<V1>
UnmodifiableObjectShortMap. collect(ShortToObjectFunction<? extends V1> function)
<V> MutableBag<V>
UnmodifiableShortShortMap. collect(ShortToObjectFunction<? extends V> function)
V
ShortObjectHashMap. getIfAbsentPutWithKey(short key, ShortToObjectFunction<? extends V> function)
V
SynchronizedShortObjectMap. getIfAbsentPutWithKey(short key, ShortToObjectFunction<? extends V> function)
V
UnmodifiableShortObjectMap. getIfAbsentPutWithKey(short key, ShortToObjectFunction<? extends V> function)
-
Uses of ShortToObjectFunction in org.eclipse.collections.impl.primitive
Methods in org.eclipse.collections.impl.primitive with parameters of type ShortToObjectFunction Modifier and Type Method Description <V> RichIterable<V>
SynchronizedShortIterable. collect(ShortToObjectFunction<? extends V> function)
-
Uses of ShortToObjectFunction in org.eclipse.collections.impl.set.immutable.primitive
Methods in org.eclipse.collections.impl.set.immutable.primitive with parameters of type ShortToObjectFunction Modifier and Type Method Description <V> ImmutableSet<V>
ImmutableShortEmptySet. collect(ShortToObjectFunction<? extends V> function)
<V> ImmutableSet<V>
ImmutableShortSingletonSet. collect(ShortToObjectFunction<? extends V> function)
-
Uses of ShortToObjectFunction in org.eclipse.collections.impl.set.mutable.primitive
Methods in org.eclipse.collections.impl.set.mutable.primitive with parameters of type ShortToObjectFunction Modifier and Type Method Description <V> MutableSet<V>
ShortHashSet. collect(ShortToObjectFunction<? extends V> function)
<V,R extends java.util.Collection<V>>
RShortHashSet. collect(ShortToObjectFunction<? extends V> function, R target)
<V> ImmutableSet<V>
ShortHashSet.ImmutableShortHashSet. collect(ShortToObjectFunction<? extends V> function)
<V> MutableSet<V>
SynchronizedShortSet. collect(ShortToObjectFunction<? extends V> function)
<V> MutableSet<V>
UnmodifiableShortSet. collect(ShortToObjectFunction<? extends V> function)
-
Uses of ShortToObjectFunction in org.eclipse.collections.impl.stack.immutable.primitive
Methods in org.eclipse.collections.impl.stack.immutable.primitive with parameters of type ShortToObjectFunction Modifier and Type Method Description <V> ImmutableStack<V>
ImmutableShortArrayStack. collect(ShortToObjectFunction<? extends V> function)
<V> ImmutableStack<V>
ImmutableShortEmptyStack. collect(ShortToObjectFunction<? extends V> function)
<V> ImmutableStack<V>
ImmutableShortSingletonStack. collect(ShortToObjectFunction<? extends V> function)
-
Uses of ShortToObjectFunction in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive with parameters of type ShortToObjectFunction Modifier and Type Method Description <V> MutableStack<V>
ShortArrayStack. collect(ShortToObjectFunction<? extends V> function)
<V> MutableStack<V>
SynchronizedShortStack. collect(ShortToObjectFunction<? extends V> function)
<V> MutableStack<V>
UnmodifiableShortStack. collect(ShortToObjectFunction<? extends V> function)
-
Uses of ShortToObjectFunction in org.eclipse.collections.impl.utility.internal.primitive
Methods in org.eclipse.collections.impl.utility.internal.primitive with parameters of type ShortToObjectFunction Modifier and Type Method Description static <V,R extends java.util.Collection<V>>
RShortIterableIterate. collect(ShortIterable iterable, ShortToObjectFunction<? extends V> function, R targetCollection)
static <V,R extends java.util.Collection<V>>
RShortIteratorIterate. collect(ShortIterator iterator, ShortToObjectFunction<? extends V> function, R targetCollection)
-
Uses of ShortToObjectFunction in org.eclipse.collections.impl.utility.primitive
Methods in org.eclipse.collections.impl.utility.primitive with parameters of type ShortToObjectFunction Modifier and Type Method Description static <V> LazyIterable<V>
LazyShortIterate. collect(ShortIterable iterable, ShortToObjectFunction<? extends V> function)
Creates a deferred transforming short iterable for the specified short iterable.static <V> LazyIterable<V>
LazyShortIterate. collectIf(ShortIterable iterable, ShortPredicate predicate, ShortToObjectFunction<? extends V> function)
Creates a deferred filtering and transforming short iterable for the specified short iterable.static <V> LazyIterable<V>
LazyShortIterate. flatCollect(ShortIterable iterable, ShortToObjectFunction<? extends java.lang.Iterable<V>> function)
Creates a deferred transforming and flattening short iterable for the specified short iterable.
-