Uses of Interface
org.eclipse.collections.api.block.function.primitive.ShortFunction
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 interfaces for map API which enhance the performance and functionality of
Map
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 mutable and immutable sorted map interfaces.
This package contains interfaces for set API which enhance the performance and functionality of
Set
.This package contains interfaces for sorted set API.
This package contains interfaces for stack API.
This package contains implementations for Eclipse Collections API.
This package contains implementations of the
ImmutableBag
interface.This package contains implementations of the
MutableBag
interface.This package contains implementations of
MutableSortedBag
.This package contains implementations of the
MutableBiMap
interface.This package contains implementations of the
SerializableComparator
interface to compare primitive double, int and long.This package contains factory implementations for
Function
, Predicate
, SerializableComparator
and Procedure
.This package contains implementations of
Procedure
and Procedure2
.This package contains implementations of primitive procedures.
This package contains implementations of the
MutableCollection
interface.This package contains implementations of the
LazyIterable
interface.This package contains implementations of the lazy primitive iterator interfaces.
This package contains implementations of the
MutableList
interface.This package contains implementations of the
ImmutableMap
interface.This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the
MutableMap
interface.This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the
MutableSortedMap
interface.This package contains implementations of the
MutableSortedMap
interface.This package contains the implementations of
ImmutableSet
.This package contains implementations of
MutableSet
.This package contains implementations of
MutableSortedSet
.This package contains implementations of the
MutableStack
interface.This package contains static utilities that provide iteration pattern implementations which work with JCF collections.
This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections.
-
Uses of ShortFunction in org.eclipse.collections.api
Modifier and TypeMethodDescriptionLazyIterable.collectShort
(ShortFunction<? super T> shortFunction) Returns a lazy ShortIterable which will transform the underlying iterable data to short values based on the shortFunction.RichIterable.collectShort
(ShortFunction<? super T> shortFunction) Returns a new primitiveshort
iterable with the results of applying the specified function on each element of the source collection.default <R extends MutableShortCollection>
RRichIterable.collectShort
(ShortFunction<? super T> shortFunction, R target) Same asRichIterable.collectShort(ShortFunction)
, except that the results are gathered into the specifiedtarget
collection. -
Uses of ShortFunction in org.eclipse.collections.api.bag
Modifier and TypeMethodDescriptionImmutableBag.collectShort
(ShortFunction<? super T> shortFunction) default MutableShortBag
MutableBag.collectShort
(ShortFunction<? super T> shortFunction) UnsortedBag.collectShort
(ShortFunction<? super T> shortFunction) -
Uses of ShortFunction in org.eclipse.collections.api.bag.sorted
Modifier and TypeMethodDescriptionImmutableSortedBag.collectShort
(ShortFunction<? super T> shortFunction) MutableSortedBag.collectShort
(ShortFunction<? super T> shortFunction) SortedBag.collectShort
(ShortFunction<? super T> shortFunction) -
Uses of ShortFunction in org.eclipse.collections.api.collection
Modifier and TypeMethodDescriptionImmutableCollection.collectShort
(ShortFunction<? super T> shortFunction) default MutableShortCollection
MutableCollection.collectShort
(ShortFunction<? super T> shortFunction) Returns a new primitiveshort
iterable with the results of applying the specified function on each element of the source collection. -
Uses of ShortFunction in org.eclipse.collections.api.factory.map.primitive
Modifier and TypeMethodDescriptionImmutableByteShortMapFactory.from
(Iterable<T> iterable, ByteFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) Creates anImmutableByteShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableCharShortMapFactory.from
(Iterable<T> iterable, CharFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) Creates anImmutableCharShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableDoubleShortMapFactory.from
(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) Creates anImmutableDoubleShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableFloatShortMapFactory.from
(Iterable<T> iterable, FloatFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) Creates anImmutableFloatShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableIntShortMapFactory.from
(Iterable<T> iterable, IntFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) Creates anImmutableIntShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableLongShortMapFactory.from
(Iterable<T> iterable, LongFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) Creates anImmutableLongShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T,
K> ImmutableObjectShortMap<K> ImmutableObjectShortMapFactory.from
(Iterable<T> iterable, Function<? super T, ? extends K> keyFunction, ShortFunction<? super T> valueFunction) Creates anImmutableObjectShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableShortBooleanMapFactory.from
(Iterable<T> iterable, ShortFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction) Creates anImmutableShortBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableShortByteMapFactory.from
(Iterable<T> iterable, ShortFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) Creates anImmutableShortByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableShortCharMapFactory.from
(Iterable<T> iterable, ShortFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anImmutableShortCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableShortDoubleMapFactory.from
(Iterable<T> iterable, ShortFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) Creates anImmutableShortDoubleMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableShortFloatMapFactory.from
(Iterable<T> iterable, ShortFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction) Creates anImmutableShortFloatMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableShortIntMapFactory.from
(Iterable<T> iterable, ShortFunction<? super T> keyFunction, IntFunction<? super T> valueFunction) Creates anImmutableShortIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableShortLongMapFactory.from
(Iterable<T> iterable, ShortFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) Creates anImmutableShortLongMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T,
V> ImmutableShortObjectMap<V> ImmutableShortObjectMapFactory.from
(Iterable<T> iterable, ShortFunction<? super T> keyFunction, Function<? super T, ? extends V> valueFunction) Creates anImmutableShortObjectMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableShortShortMapFactory.from
(Iterable<T> iterable, ShortFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) Creates anImmutableShortShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableByteShortMapFactory.from
(Iterable<T> iterable, ByteFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) Creates anMutableByteShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableCharShortMapFactory.from
(Iterable<T> iterable, CharFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) Creates anMutableCharShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableDoubleShortMapFactory.from
(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) Creates anMutableDoubleShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableFloatShortMapFactory.from
(Iterable<T> iterable, FloatFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) Creates anMutableFloatShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableIntShortMapFactory.from
(Iterable<T> iterable, IntFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) Creates anMutableIntShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableLongShortMapFactory.from
(Iterable<T> iterable, LongFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) Creates anMutableLongShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T,
K> MutableObjectShortMap<K> MutableObjectShortMapFactory.from
(Iterable<T> iterable, Function<? super T, ? extends K> keyFunction, ShortFunction<? super T> valueFunction) Creates anMutableObjectShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableShortBooleanMapFactory.from
(Iterable<T> iterable, ShortFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction) Creates anMutableShortBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableShortByteMapFactory.from
(Iterable<T> iterable, ShortFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) Creates anMutableShortByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableShortCharMapFactory.from
(Iterable<T> iterable, ShortFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anMutableShortCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableShortDoubleMapFactory.from
(Iterable<T> iterable, ShortFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) Creates anMutableShortDoubleMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableShortFloatMapFactory.from
(Iterable<T> iterable, ShortFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction) Creates anMutableShortFloatMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableShortIntMapFactory.from
(Iterable<T> iterable, ShortFunction<? super T> keyFunction, IntFunction<? super T> valueFunction) Creates anMutableShortIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableShortLongMapFactory.from
(Iterable<T> iterable, ShortFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) Creates anMutableShortLongMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T,
V> MutableShortObjectMap<V> MutableShortObjectMapFactory.from
(Iterable<T> iterable, ShortFunction<? super T> keyFunction, Function<? super T, ? extends V> valueFunction) Creates anMutableShortObjectMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableShortShortMapFactory.from
(Iterable<T> iterable, ShortFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) Creates anMutableShortShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
. -
Uses of ShortFunction in org.eclipse.collections.api.list
Modifier and TypeMethodDescriptionImmutableList.collectShort
(ShortFunction<? super T> shortFunction) ListIterable.collectShort
(ShortFunction<? super T> shortFunction) default MutableShortList
MutableList.collectShort
(ShortFunction<? super T> shortFunction) MultiReaderList.sortThisByShort
(ShortFunction<? super T> function) MutableList.sortThisByShort
(ShortFunction<? super T> function) -
Uses of ShortFunction in org.eclipse.collections.api.map
Modifier and TypeMethodDescriptionImmutableMap.collectShort
(ShortFunction<? super V> shortFunction) ImmutableOrderedMap.collectShort
(ShortFunction<? super V> shortFunction) MutableMap.collectShort
(ShortFunction<? super V> shortFunction) MutableOrderedMap.collectShort
(ShortFunction<? super V> shortFunction) OrderedMap.collectShort
(ShortFunction<? super V> shortFunction) UnsortedMapIterable.collectShort
(ShortFunction<? super V> shortFunction) -
Uses of ShortFunction in org.eclipse.collections.api.map.primitive
Modifier and TypeMethodDescriptionImmutablePrimitiveObjectMap.collectShort
(ShortFunction<? super V> shortFunction) MutablePrimitiveObjectMap.collectShort
(ShortFunction<? super V> shortFunction) PrimitiveObjectMap.collectShort
(ShortFunction<? super V> shortFunction) <P> short
MutableByteShortMap.getIfAbsentPutWith
(byte key, ShortFunction<? super P> function, P parameter) Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.<P> short
MutableCharShortMap.getIfAbsentPutWith
(char key, ShortFunction<? super P> function, P parameter) Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.<P> short
MutableDoubleShortMap.getIfAbsentPutWith
(double key, ShortFunction<? super P> function, P parameter) Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.<P> short
MutableFloatShortMap.getIfAbsentPutWith
(float key, ShortFunction<? super P> function, P parameter) Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.<P> short
MutableIntShortMap.getIfAbsentPutWith
(int key, ShortFunction<? super P> function, P parameter) Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.<P> short
MutableLongShortMap.getIfAbsentPutWith
(long key, ShortFunction<? super P> function, P parameter) Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.<P> short
MutableObjectShortMap.getIfAbsentPutWith
(K key, ShortFunction<? super P> function, P parameter) Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.<P> short
MutableShortShortMap.getIfAbsentPutWith
(short key, ShortFunction<? super P> function, P parameter) Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.short
MutableObjectShortMap.getIfAbsentPutWithKey
(K key, ShortFunction<? super K> 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 ShortFunction in org.eclipse.collections.api.map.sorted
Modifier and TypeMethodDescriptionImmutableSortedMap.collectShort
(ShortFunction<? super V> shortFunction) MutableSortedMap.collectShort
(ShortFunction<? super V> shortFunction) SortedMapIterable.collectShort
(ShortFunction<? super V> shortFunction) -
Uses of ShortFunction in org.eclipse.collections.api.ordered
Modifier and TypeMethodDescriptionOrderedIterable.collectShort
(ShortFunction<? super T> shortFunction) ReversibleIterable.collectShort
(ShortFunction<? super T> shortFunction) -
Uses of ShortFunction in org.eclipse.collections.api.set
Modifier and TypeMethodDescriptionImmutableSet.collectShort
(ShortFunction<? super T> shortFunction) default MutableShortSet
MutableSet.collectShort
(ShortFunction<? super T> shortFunction) UnsortedSetIterable.collectShort
(ShortFunction<? super T> shortFunction) -
Uses of ShortFunction in org.eclipse.collections.api.set.sorted
Modifier and TypeMethodDescriptionImmutableSortedSet.collectShort
(ShortFunction<? super T> shortFunction) MutableSortedSet.collectShort
(ShortFunction<? super T> shortFunction) SortedSetIterable.collectShort
(ShortFunction<? super T> shortFunction) -
Uses of ShortFunction in org.eclipse.collections.api.stack
Modifier and TypeMethodDescriptionImmutableStack.collectShort
(ShortFunction<? super T> shortFunction) MutableStack.collectShort
(ShortFunction<? super T> shortFunction) StackIterable.collectShort
(ShortFunction<? super T> shortFunction) -
Uses of ShortFunction in org.eclipse.collections.impl
Modifier and TypeMethodDescriptionUnmodifiableRichIterable.collectShort
(ShortFunction<? super T> shortFunction) <R extends MutableShortCollection>
RUnmodifiableRichIterable.collectShort
(ShortFunction<? super T> shortFunction, R target) -
Uses of ShortFunction in org.eclipse.collections.impl.bag
Modifier and TypeMethodDescription<R extends MutableShortCollection>
RAbstractBag.collectShort
(ShortFunction<? super T> shortFunction, R target) -
Uses of ShortFunction in org.eclipse.collections.impl.bag.immutable
Modifier and TypeMethodDescriptionAbstractImmutableBag.collectShort
(ShortFunction<? super T> shortFunction) -
Uses of ShortFunction in org.eclipse.collections.impl.bag.mutable
Modifier and TypeMethodDescriptionMultiReaderHashBag.collectShort
(ShortFunction<? super T> shortFunction) SynchronizedBag.collectShort
(ShortFunction<? super T> shortFunction) UnmodifiableBag.collectShort
(ShortFunction<? super T> shortFunction) -
Uses of ShortFunction in org.eclipse.collections.impl.bag.sorted.mutable
Modifier and TypeMethodDescriptionAbstractMutableSortedBag.collectShort
(ShortFunction<? super T> shortFunction) SynchronizedSortedBag.collectShort
(ShortFunction<? super T> shortFunction) UnmodifiableSortedBag.collectShort
(ShortFunction<? super T> shortFunction) -
Uses of ShortFunction in org.eclipse.collections.impl.bimap
Modifier and TypeMethodDescription<R extends MutableShortCollection>
RAbstractBiMap.collectShort
(ShortFunction<? super V> shortFunction, R target) -
Uses of ShortFunction in org.eclipse.collections.impl.bimap.immutable
Modifier and TypeMethodDescriptionAbstractImmutableBiMap.collectShort
(ShortFunction<? super V> shortFunction) -
Uses of ShortFunction in org.eclipse.collections.impl.bimap.mutable
Modifier and TypeMethodDescriptionUnmodifiableBiMap.collectShort
(ShortFunction<? super V> shortFunction) <R extends MutableShortCollection>
RUnmodifiableBiMap.collectShort
(ShortFunction<? super V> shortFunction, R target) -
Uses of ShortFunction in org.eclipse.collections.impl.block.comparator.primitive
-
Uses of ShortFunction in org.eclipse.collections.impl.block.factory
Modifier and TypeMethodDescriptionstatic ShortFunction<String>
StringFunctions.toPrimitiveShort()
static ShortFunction<Integer>
PrimitiveFunctions.unboxIntegerToShort()
Modifier and TypeMethodDescriptionstatic <T> SerializableComparator<T>
Comparators.byShortFunction
(ShortFunction<T> function) static <T1,
T2> Functions.ShortFunctionChain<T1, T2> Functions.chainShort
(Function<T1, T2> function1, ShortFunction<? super T2> function2) Functions.FunctionChain.chainShort
(ShortFunction<? super T3> function) static <T> HashingStrategy<T>
HashingStrategies.fromShortFunction
(ShortFunction<? super T> function) static <T> SerializableComparator<T>
Functions.toShortComparator
(ShortFunction<T> function) -
Uses of ShortFunction in org.eclipse.collections.impl.block.procedure
-
Uses of ShortFunction in org.eclipse.collections.impl.block.procedure.primitive
ModifierConstructorDescriptionCollectShortProcedure
(ShortFunction<? super T> shortFunction, MutableShortCollection targetCollection) -
Uses of ShortFunction in org.eclipse.collections.impl.collection
Modifier and TypeMethodDescriptionAbstractSynchronizedRichIterable.collectShort
(ShortFunction<? super T> shortFunction) <R extends MutableShortCollection>
RAbstractSynchronizedRichIterable.collectShort
(ShortFunction<? super T> shortFunction, R target) -
Uses of ShortFunction in org.eclipse.collections.impl.collection.mutable
Modifier and TypeMethodDescription<R extends MutableShortCollection>
RAbstractCollectionAdapter.collectShort
(ShortFunction<? super T> shortFunction, R target) <R extends MutableShortCollection>
RAbstractMultiReaderMutableCollection.collectShort
(ShortFunction<? super T> shortFunction, R target) AbstractSynchronizedMutableCollection.collectShort
(ShortFunction<? super T> shortFunction) AbstractUnmodifiableMutableCollection.collectShort
(ShortFunction<? super T> shortFunction) <R extends MutableShortCollection>
RAbstractUnmodifiableMutableCollection.collectShort
(ShortFunction<? super T> shortFunction, R target) -
Uses of ShortFunction in org.eclipse.collections.impl.collector
Modifier and TypeMethodDescriptionstatic <T,
R extends MutableShortCollection>
Collector<T,?, R> Collectors2.collectShort
(ShortFunction<? super T> function, Supplier<R> supplier) Returns a new MutableShortCollection with the results of applying the specified ShortFunction on each element of the source. -
Uses of ShortFunction in org.eclipse.collections.impl.lazy
Modifier and TypeMethodDescriptionAbstractLazyIterable.collectShort
(ShortFunction<? super T> shortFunction) -
Uses of ShortFunction in org.eclipse.collections.impl.lazy.primitive
ModifierConstructorDescriptionCollectShortIterable
(LazyIterable<T> adapted, ShortFunction<? super T> function) -
Uses of ShortFunction in org.eclipse.collections.impl.list.mutable
Modifier and TypeMethodDescription<R extends MutableShortCollection>
RFastList.collectShort
(ShortFunction<? super T> shortFunction, R target) MultiReaderFastList.collectShort
(ShortFunction<? super T> shortFunction) SynchronizedMutableList.collectShort
(ShortFunction<? super T> shortFunction) UnmodifiableMutableList.collectShort
(ShortFunction<? super T> shortFunction) AbstractListAdapter.sortThisByShort
(ShortFunction<? super T> function) AbstractMutableList.sortThisByShort
(ShortFunction<? super T> function) MultiReaderFastList.sortThisByShort
(ShortFunction<? super T> function) SynchronizedMutableList.sortThisByShort
(ShortFunction<? super T> function) UnmodifiableMutableList.sortThisByShort
(ShortFunction<? super T> function) -
Uses of ShortFunction in org.eclipse.collections.impl.map.immutable
Modifier and TypeMethodDescriptionAbstractImmutableMap.collectShort
(ShortFunction<? super V> shortFunction) -
Uses of ShortFunction in org.eclipse.collections.impl.map.immutable.primitive
Modifier and TypeMethodDescriptionImmutableByteShortMapFactoryImpl.from
(Iterable<T> iterable, ByteFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) ImmutableCharShortMapFactoryImpl.from
(Iterable<T> iterable, CharFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) ImmutableDoubleShortMapFactoryImpl.from
(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) ImmutableFloatShortMapFactoryImpl.from
(Iterable<T> iterable, FloatFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) ImmutableIntShortMapFactoryImpl.from
(Iterable<T> iterable, IntFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) ImmutableLongShortMapFactoryImpl.from
(Iterable<T> iterable, LongFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) <T,
K> ImmutableObjectShortMap<K> ImmutableObjectShortMapFactoryImpl.from
(Iterable<T> iterable, Function<? super T, ? extends K> keyFunction, ShortFunction<? super T> valueFunction) ImmutableShortBooleanMapFactoryImpl.from
(Iterable<T> iterable, ShortFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction) ImmutableShortByteMapFactoryImpl.from
(Iterable<T> iterable, ShortFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) ImmutableShortCharMapFactoryImpl.from
(Iterable<T> iterable, ShortFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) ImmutableShortDoubleMapFactoryImpl.from
(Iterable<T> iterable, ShortFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) ImmutableShortFloatMapFactoryImpl.from
(Iterable<T> iterable, ShortFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction) ImmutableShortIntMapFactoryImpl.from
(Iterable<T> iterable, ShortFunction<? super T> keyFunction, IntFunction<? super T> valueFunction) ImmutableShortLongMapFactoryImpl.from
(Iterable<T> iterable, ShortFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) <T,
V> ImmutableShortObjectMap<V> ImmutableShortObjectMapFactoryImpl.from
(Iterable<T> iterable, ShortFunction<? super T> keyFunction, Function<? super T, ? extends V> valueFunction) ImmutableShortShortMapFactoryImpl.from
(Iterable<T> iterable, ShortFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) -
Uses of ShortFunction in org.eclipse.collections.impl.map.mutable
Modifier and TypeMethodDescriptionAbstractMutableMap.collectShort
(ShortFunction<? super V> shortFunction) SynchronizedMutableMap.collectShort
(ShortFunction<? super V> shortFunction) UnmodifiableMutableMap.collectShort
(ShortFunction<? super V> shortFunction) <R extends MutableShortCollection>
RUnmodifiableMutableMap.collectShort
(ShortFunction<? super V> shortFunction, R target) -
Uses of ShortFunction in org.eclipse.collections.impl.map.mutable.primitive
Modifier and TypeMethodDescriptionByteObjectHashMap.collectShort
(ShortFunction<? super V> shortFunction) CharObjectHashMap.collectShort
(ShortFunction<? super V> shortFunction) DoubleObjectHashMap.collectShort
(ShortFunction<? super V> shortFunction) FloatObjectHashMap.collectShort
(ShortFunction<? super V> shortFunction) IntObjectHashMap.collectShort
(ShortFunction<? super V> shortFunction) LongObjectHashMap.collectShort
(ShortFunction<? super V> shortFunction) ShortObjectHashMap.collectShort
(ShortFunction<? super V> shortFunction) SynchronizedByteObjectMap.collectShort
(ShortFunction<? super V> shortFunction) <R extends MutableShortCollection>
RSynchronizedByteObjectMap.collectShort
(ShortFunction<? super V> shortFunction, R target) SynchronizedCharObjectMap.collectShort
(ShortFunction<? super V> shortFunction) <R extends MutableShortCollection>
RSynchronizedCharObjectMap.collectShort
(ShortFunction<? super V> shortFunction, R target) SynchronizedDoubleObjectMap.collectShort
(ShortFunction<? super V> shortFunction) <R extends MutableShortCollection>
RSynchronizedDoubleObjectMap.collectShort
(ShortFunction<? super V> shortFunction, R target) SynchronizedFloatObjectMap.collectShort
(ShortFunction<? super V> shortFunction) <R extends MutableShortCollection>
RSynchronizedFloatObjectMap.collectShort
(ShortFunction<? super V> shortFunction, R target) SynchronizedIntObjectMap.collectShort
(ShortFunction<? super V> shortFunction) <R extends MutableShortCollection>
RSynchronizedIntObjectMap.collectShort
(ShortFunction<? super V> shortFunction, R target) SynchronizedLongObjectMap.collectShort
(ShortFunction<? super V> shortFunction) <R extends MutableShortCollection>
RSynchronizedLongObjectMap.collectShort
(ShortFunction<? super V> shortFunction, R target) SynchronizedShortObjectMap.collectShort
(ShortFunction<? super V> shortFunction) <R extends MutableShortCollection>
RSynchronizedShortObjectMap.collectShort
(ShortFunction<? super V> shortFunction, R target) UnmodifiableByteObjectMap.collectShort
(ShortFunction<? super V> shortFunction) <R extends MutableShortCollection>
RUnmodifiableByteObjectMap.collectShort
(ShortFunction<? super V> shortFunction, R target) UnmodifiableCharObjectMap.collectShort
(ShortFunction<? super V> shortFunction) <R extends MutableShortCollection>
RUnmodifiableCharObjectMap.collectShort
(ShortFunction<? super V> shortFunction, R target) UnmodifiableDoubleObjectMap.collectShort
(ShortFunction<? super V> shortFunction) <R extends MutableShortCollection>
RUnmodifiableDoubleObjectMap.collectShort
(ShortFunction<? super V> shortFunction, R target) UnmodifiableFloatObjectMap.collectShort
(ShortFunction<? super V> shortFunction) <R extends MutableShortCollection>
RUnmodifiableFloatObjectMap.collectShort
(ShortFunction<? super V> shortFunction, R target) UnmodifiableIntObjectMap.collectShort
(ShortFunction<? super V> shortFunction) <R extends MutableShortCollection>
RUnmodifiableIntObjectMap.collectShort
(ShortFunction<? super V> shortFunction, R target) UnmodifiableLongObjectMap.collectShort
(ShortFunction<? super V> shortFunction) <R extends MutableShortCollection>
RUnmodifiableLongObjectMap.collectShort
(ShortFunction<? super V> shortFunction, R target) UnmodifiableShortObjectMap.collectShort
(ShortFunction<? super V> shortFunction) <R extends MutableShortCollection>
RUnmodifiableShortObjectMap.collectShort
(ShortFunction<? super V> shortFunction, R target) MutableByteShortMapFactoryImpl.from
(Iterable<T> iterable, ByteFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) MutableCharShortMapFactoryImpl.from
(Iterable<T> iterable, CharFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) MutableDoubleShortMapFactoryImpl.from
(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) MutableFloatShortMapFactoryImpl.from
(Iterable<T> iterable, FloatFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) MutableIntShortMapFactoryImpl.from
(Iterable<T> iterable, IntFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) MutableLongShortMapFactoryImpl.from
(Iterable<T> iterable, LongFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) <T,
K> MutableObjectShortMap<K> MutableObjectShortMapFactoryImpl.from
(Iterable<T> iterable, Function<? super T, ? extends K> keyFunction, ShortFunction<? super T> valueFunction) MutableShortBooleanMapFactoryImpl.from
(Iterable<T> iterable, ShortFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction) MutableShortByteMapFactoryImpl.from
(Iterable<T> iterable, ShortFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) MutableShortCharMapFactoryImpl.from
(Iterable<T> iterable, ShortFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) MutableShortDoubleMapFactoryImpl.from
(Iterable<T> iterable, ShortFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) MutableShortFloatMapFactoryImpl.from
(Iterable<T> iterable, ShortFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction) MutableShortIntMapFactoryImpl.from
(Iterable<T> iterable, ShortFunction<? super T> keyFunction, IntFunction<? super T> valueFunction) MutableShortLongMapFactoryImpl.from
(Iterable<T> iterable, ShortFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) <T,
V> MutableShortObjectMap<V> MutableShortObjectMapFactoryImpl.from
(Iterable<T> iterable, ShortFunction<? super T> keyFunction, Function<? super T, ? extends V> valueFunction) MutableShortShortMapFactoryImpl.from
(Iterable<T> iterable, ShortFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) <P> short
ByteShortHashMap.getIfAbsentPutWith
(byte key, ShortFunction<? super P> function, P parameter) <P> short
CharShortHashMap.getIfAbsentPutWith
(char key, ShortFunction<? super P> function, P parameter) <P> short
DoubleShortHashMap.getIfAbsentPutWith
(double key, ShortFunction<? super P> function, P parameter) <P> short
FloatShortHashMap.getIfAbsentPutWith
(float key, ShortFunction<? super P> function, P parameter) <P> short
IntShortHashMap.getIfAbsentPutWith
(int key, ShortFunction<? super P> function, P parameter) <P> short
LongShortHashMap.getIfAbsentPutWith
(long key, ShortFunction<? super P> function, P parameter) <P> short
ObjectShortHashMap.getIfAbsentPutWith
(K key, ShortFunction<? super P> function, P parameter) <P> short
ObjectShortHashMapWithHashingStrategy.getIfAbsentPutWith
(K key, ShortFunction<? super P> function, P parameter) <P> short
ShortShortHashMap.getIfAbsentPutWith
(short key, ShortFunction<? super P> function, P parameter) <P> short
SynchronizedByteShortMap.getIfAbsentPutWith
(byte key, ShortFunction<? super P> function, P parameter) <P> short
SynchronizedCharShortMap.getIfAbsentPutWith
(char key, ShortFunction<? super P> function, P parameter) <P> short
SynchronizedDoubleShortMap.getIfAbsentPutWith
(double key, ShortFunction<? super P> function, P parameter) <P> short
SynchronizedFloatShortMap.getIfAbsentPutWith
(float key, ShortFunction<? super P> function, P parameter) <P> short
SynchronizedIntShortMap.getIfAbsentPutWith
(int key, ShortFunction<? super P> function, P parameter) <P> short
SynchronizedLongShortMap.getIfAbsentPutWith
(long key, ShortFunction<? super P> function, P parameter) <P> short
SynchronizedObjectShortMap.getIfAbsentPutWith
(K key, ShortFunction<? super P> function, P parameter) <P> short
SynchronizedShortShortMap.getIfAbsentPutWith
(short key, ShortFunction<? super P> function, P parameter) <P> short
UnmodifiableByteShortMap.getIfAbsentPutWith
(byte key, ShortFunction<? super P> function, P parameter) <P> short
UnmodifiableCharShortMap.getIfAbsentPutWith
(char key, ShortFunction<? super P> function, P parameter) <P> short
UnmodifiableDoubleShortMap.getIfAbsentPutWith
(double key, ShortFunction<? super P> function, P parameter) <P> short
UnmodifiableFloatShortMap.getIfAbsentPutWith
(float key, ShortFunction<? super P> function, P parameter) <P> short
UnmodifiableIntShortMap.getIfAbsentPutWith
(int key, ShortFunction<? super P> function, P parameter) <P> short
UnmodifiableLongShortMap.getIfAbsentPutWith
(long key, ShortFunction<? super P> function, P parameter) <P> short
UnmodifiableObjectShortMap.getIfAbsentPutWith
(K key, ShortFunction<? super P> function, P parameter) <P> short
UnmodifiableShortShortMap.getIfAbsentPutWith
(short key, ShortFunction<? super P> function, P parameter) short
ObjectShortHashMap.getIfAbsentPutWithKey
(K key, ShortFunction<? super K> function) short
ObjectShortHashMapWithHashingStrategy.getIfAbsentPutWithKey
(K key, ShortFunction<? super K> function) short
SynchronizedObjectShortMap.getIfAbsentPutWithKey
(K key, ShortFunction<? super K> function) short
UnmodifiableObjectShortMap.getIfAbsentPutWithKey
(K key, ShortFunction<? super K> function) -
Uses of ShortFunction in org.eclipse.collections.impl.map.ordered.mutable
Modifier and TypeMethodDescriptionOrderedMapAdapter.collectShort
(ShortFunction<? super V> shortFunction) UnmodifiableMutableOrderedMap.collectShort
(ShortFunction<? super V> shortFunction) <R extends MutableShortCollection>
RUnmodifiableMutableOrderedMap.collectShort
(ShortFunction<? super V> shortFunction, R target) -
Uses of ShortFunction in org.eclipse.collections.impl.map.sorted.immutable
Modifier and TypeMethodDescriptionAbstractImmutableSortedMap.collectShort
(ShortFunction<? super V> shortFunction) -
Uses of ShortFunction in org.eclipse.collections.impl.map.sorted.mutable
Modifier and TypeMethodDescriptionAbstractMutableSortedMap.collectShort
(ShortFunction<? super V> shortFunction) SynchronizedSortedMap.collectShort
(ShortFunction<? super V> shortFunction) UnmodifiableTreeMap.collectShort
(ShortFunction<? super V> shortFunction) <R extends MutableShortCollection>
RUnmodifiableTreeMap.collectShort
(ShortFunction<? super V> shortFunction, R target) -
Uses of ShortFunction in org.eclipse.collections.impl.set.immutable
Modifier and TypeMethodDescriptionAbstractImmutableSet.collectShort
(ShortFunction<? super T> shortFunction) -
Uses of ShortFunction in org.eclipse.collections.impl.set.mutable
Modifier and TypeMethodDescriptionMultiReaderUnifiedSet.collectShort
(ShortFunction<? super T> shortFunction) SynchronizedMutableSet.collectShort
(ShortFunction<? super T> shortFunction) UnmodifiableMutableSet.collectShort
(ShortFunction<? super T> shortFunction) -
Uses of ShortFunction in org.eclipse.collections.impl.set.sorted.mutable
Modifier and TypeMethodDescriptionSortedSetAdapter.collectShort
(ShortFunction<? super T> shortFunction) SynchronizedSortedSet.collectShort
(ShortFunction<? super T> shortFunction) TreeSortedSet.collectShort
(ShortFunction<? super T> shortFunction) UnmodifiableSortedSet.collectShort
(ShortFunction<? super T> shortFunction) -
Uses of ShortFunction in org.eclipse.collections.impl.stack.mutable
Modifier and TypeMethodDescriptionArrayStack.collectShort
(ShortFunction<? super T> shortFunction) <R extends MutableShortCollection>
RArrayStack.collectShort
(ShortFunction<? super T> shortFunction, R target) SynchronizedStack.collectShort
(ShortFunction<? super T> shortFunction) <R extends MutableShortCollection>
RSynchronizedStack.collectShort
(ShortFunction<? super T> shortFunction, R target) UnmodifiableStack.collectShort
(ShortFunction<? super T> shortFunction) <R extends MutableShortCollection>
RUnmodifiableStack.collectShort
(ShortFunction<? super T> shortFunction, R target) -
Uses of ShortFunction in org.eclipse.collections.impl.utility
Modifier and TypeMethodDescriptionstatic <T> MutableShortList
ArrayIterate.collectShort
(T[] objectArray, ShortFunction<? super T> shortFunction) static <T,
R extends MutableShortCollection>
RArrayIterate.collectShort
(T[] objectArray, ShortFunction<? super T> shortFunction, R target) static <T> MutableShortList
ArrayListIterate.collectShort
(ArrayList<T> list, ShortFunction<? super T> shortFunction) static <T,
R extends MutableShortCollection>
RArrayListIterate.collectShort
(ArrayList<T> list, ShortFunction<? super T> shortFunction, R target) static <T> MutableShortCollection
Iterate.collectShort
(Iterable<T> iterable, ShortFunction<? super T> shortFunction) Returns a newshort
collection with the results of applying the specified shortFunction for each element of the iterable.static <T,
R extends MutableShortCollection>
RIterate.collectShort
(Iterable<T> iterable, ShortFunction<? super T> shortFunction, R target) Same asIterate.collectShort(Iterable, ShortFunction)
, except that the results are gathered into the specifiedtarget
collection.static <T> MutableShortList
ListIterate.collectShort
(List<T> list, ShortFunction<? super T> shortFunction) static <T,
R extends MutableShortCollection>
RListIterate.collectShort
(List<T> list, ShortFunction<? super T> shortFunction, R target) static <K,
V> MutableShortCollection MapIterate.collectShort
(Map<K, V> map, ShortFunction<? super V> shortFunction) static <K,
V, R extends MutableShortCollection>
RMapIterate.collectShort
(Map<K, V> map, ShortFunction<? super V> shortFunction, R target) -
Uses of ShortFunction in org.eclipse.collections.impl.utility.internal
Modifier and TypeMethodDescriptionstatic <T> MutableShortCollection
IterableIterate.collectShort
(Iterable<T> iterable, ShortFunction<? super T> shortFunction) static <T,
R extends MutableShortCollection>
RIterableIterate.collectShort
(Iterable<T> iterable, ShortFunction<? super T> shortFunction, R target) static <T> MutableShortCollection
IteratorIterate.collectShort
(Iterator<T> iterator, ShortFunction<? super T> shortFunction) static <T,
R extends MutableShortCollection>
RIteratorIterate.collectShort
(Iterator<T> iterator, ShortFunction<? super T> shortFunction, R target) static <T> MutableShortList
RandomAccessListIterate.collectShort
(List<T> list, ShortFunction<? super T> shortFunction) static <T,
R extends MutableShortCollection>
RRandomAccessListIterate.collectShort
(List<T> list, ShortFunction<? super T> shortFunction, R target)