Uses of Interface
org.eclipse.collections.api.block.function.primitive.ShortFunction
-
Packages that use ShortFunction Package Description org.eclipse.collections.api This package contains interfaces for Eclipse Collections API.org.eclipse.collections.api.bag This package contains interfaces for Bag API.org.eclipse.collections.api.bag.sorted This package contains interfaces for SortedBag API.org.eclipse.collections.api.collection org.eclipse.collections.api.factory.map.primitive org.eclipse.collections.api.list This package contains interfaces for list API which enhance the performance and functionality ofList
.org.eclipse.collections.api.map This package contains interfaces for map API which enhance the performance and functionality ofMap
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.map.sorted This package contains mutable and immutable sorted map interfaces.org.eclipse.collections.api.ordered org.eclipse.collections.api.set This package contains interfaces for set API which enhance the performance and functionality ofSet
.org.eclipse.collections.api.set.sorted This package contains interfaces for sorted set API.org.eclipse.collections.api.stack This package contains interfaces for stack API.org.eclipse.collections.impl This package contains implementations for Eclipse Collections API.org.eclipse.collections.impl.bag org.eclipse.collections.impl.bag.immutable This package contains implementations of theImmutableBag
interface.org.eclipse.collections.impl.bag.mutable This package contains implementations of theMutableBag
interface.org.eclipse.collections.impl.bag.sorted.immutable org.eclipse.collections.impl.bag.sorted.mutable This package contains implementations ofMutableSortedBag
.org.eclipse.collections.impl.bimap org.eclipse.collections.impl.bimap.immutable org.eclipse.collections.impl.bimap.mutable This package contains implementations of theMutableBiMap
interface.org.eclipse.collections.impl.block.comparator.primitive This package contains implementations of theSerializableComparator
interface to compare primitive double, int and long.org.eclipse.collections.impl.block.factory This package contains factory implementations forFunction
,Predicate
,SerializableComparator
andProcedure
.org.eclipse.collections.impl.block.procedure This package contains implementations ofProcedure
andProcedure2
.org.eclipse.collections.impl.block.procedure.primitive This package contains implementations of primitive procedures.org.eclipse.collections.impl.collection org.eclipse.collections.impl.collection.mutable This package contains implementations of theMutableCollection
interface.org.eclipse.collections.impl.collector org.eclipse.collections.impl.lazy This package contains implementations of theLazyIterable
interface.org.eclipse.collections.impl.lazy.primitive This package contains implementations of the lazy primitive iterator interfaces.org.eclipse.collections.impl.list.fixed This package contains implementations of theFixedSizeList
interface.org.eclipse.collections.impl.list.immutable This package contains implementations of theImmutableList
interface.org.eclipse.collections.impl.list.mutable This package contains implementations of theMutableList
interface.org.eclipse.collections.impl.map.immutable This package contains implementations of theImmutableMap
interface.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 This package contains implementations of theMutableMap
interface.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.map.ordered.mutable org.eclipse.collections.impl.map.sorted.immutable This package contains implementations of theMutableSortedMap
interface.org.eclipse.collections.impl.map.sorted.mutable This package contains implementations of theMutableSortedMap
interface.org.eclipse.collections.impl.set.immutable This package contains the implementations ofImmutableSet
.org.eclipse.collections.impl.set.mutable This package contains implementations ofMutableSet
.org.eclipse.collections.impl.set.sorted.immutable This package contains implementations ofImmutableSortedSet
.org.eclipse.collections.impl.set.sorted.mutable This package contains implementations ofMutableSortedSet
.org.eclipse.collections.impl.stack.immutable This package contains implementations of theImmutableStack
interface.org.eclipse.collections.impl.stack.mutable This package contains implementations of theMutableStack
interface.org.eclipse.collections.impl.utility This package contains static utilities that provide iteration pattern implementations which work with JCF collections.org.eclipse.collections.impl.utility.internal This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections. -
-
Uses of ShortFunction in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type ShortFunction Modifier and Type Method Description LazyShortIterable
LazyIterable. collectShort(ShortFunction<? super T> shortFunction)
Returns a lazy ShortIterable which will transform the underlying iterable data to short values based on the shortFunction.ShortIterable
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
Methods in org.eclipse.collections.api.bag with parameters of type ShortFunction Modifier and Type Method Description ImmutableShortBag
ImmutableBag. collectShort(ShortFunction<? super T> shortFunction)
default MutableShortBag
MutableBag. collectShort(ShortFunction<? super T> shortFunction)
ShortBag
UnsortedBag. collectShort(ShortFunction<? super T> shortFunction)
-
Uses of ShortFunction in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted with parameters of type ShortFunction Modifier and Type Method Description ImmutableShortList
ImmutableSortedBag. collectShort(ShortFunction<? super T> shortFunction)
MutableShortList
MutableSortedBag. collectShort(ShortFunction<? super T> shortFunction)
ShortList
SortedBag. collectShort(ShortFunction<? super T> shortFunction)
-
Uses of ShortFunction in org.eclipse.collections.api.collection
Methods in org.eclipse.collections.api.collection with parameters of type ShortFunction Modifier and Type Method Description ImmutableShortCollection
ImmutableCollection. 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
Methods in org.eclipse.collections.api.factory.map.primitive with parameters of type ShortFunction Modifier and Type Method Description <T> ImmutableByteShortMap
ImmutableByteShortMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
Creates anImmutableByteShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableCharShortMap
ImmutableCharShortMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
Creates anImmutableCharShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableDoubleShortMap
ImmutableDoubleShortMapFactory. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
Creates anImmutableDoubleShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableFloatShortMap
ImmutableFloatShortMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
Creates anImmutableFloatShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableIntShortMap
ImmutableIntShortMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
Creates anImmutableIntShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableLongShortMap
ImmutableLongShortMapFactory. from(java.lang.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(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, ShortFunction<? super T> valueFunction)
Creates anImmutableObjectShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableShortBooleanMap
ImmutableShortBooleanMapFactory. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anImmutableShortBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableShortByteMap
ImmutableShortByteMapFactory. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
Creates anImmutableShortByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableShortCharMap
ImmutableShortCharMapFactory. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
Creates anImmutableShortCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableShortDoubleMap
ImmutableShortDoubleMapFactory. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
Creates anImmutableShortDoubleMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableShortFloatMap
ImmutableShortFloatMapFactory. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
Creates anImmutableShortFloatMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableShortIntMap
ImmutableShortIntMapFactory. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
Creates anImmutableShortIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableShortLongMap
ImmutableShortLongMapFactory. from(java.lang.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(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)
Creates anImmutableShortObjectMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableShortShortMap
ImmutableShortShortMapFactory. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
Creates anImmutableShortShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableByteShortMap
MutableByteShortMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
Creates anMutableByteShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableCharShortMap
MutableCharShortMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
Creates anMutableCharShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableDoubleShortMap
MutableDoubleShortMapFactory. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
Creates anMutableDoubleShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableFloatShortMap
MutableFloatShortMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
Creates anMutableFloatShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableIntShortMap
MutableIntShortMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
Creates anMutableIntShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableLongShortMap
MutableLongShortMapFactory. from(java.lang.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(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, ShortFunction<? super T> valueFunction)
Creates anMutableObjectShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableShortBooleanMap
MutableShortBooleanMapFactory. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anMutableShortBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableShortByteMap
MutableShortByteMapFactory. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
Creates anMutableShortByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableShortCharMap
MutableShortCharMapFactory. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
Creates anMutableShortCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableShortDoubleMap
MutableShortDoubleMapFactory. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
Creates anMutableShortDoubleMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableShortFloatMap
MutableShortFloatMapFactory. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
Creates anMutableShortFloatMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableShortIntMap
MutableShortIntMapFactory. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
Creates anMutableShortIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableShortLongMap
MutableShortLongMapFactory. from(java.lang.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(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)
Creates anMutableShortObjectMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableShortShortMap
MutableShortShortMapFactory. from(java.lang.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
Methods in org.eclipse.collections.api.list with parameters of type ShortFunction Modifier and Type Method Description ImmutableShortList
ImmutableList. collectShort(ShortFunction<? super T> shortFunction)
ShortList
ListIterable. collectShort(ShortFunction<? super T> shortFunction)
default MutableShortList
MutableList. collectShort(ShortFunction<? super T> shortFunction)
MultiReaderList<T>
MultiReaderList. sortThisByShort(ShortFunction<? super T> function)
MutableList<T>
MutableList. sortThisByShort(ShortFunction<? super T> function)
-
Uses of ShortFunction in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map with parameters of type ShortFunction Modifier and Type Method Description ImmutableShortBag
ImmutableMap. collectShort(ShortFunction<? super V> shortFunction)
ImmutableShortList
ImmutableOrderedMap. collectShort(ShortFunction<? super V> shortFunction)
MutableShortBag
MutableMap. collectShort(ShortFunction<? super V> shortFunction)
MutableShortList
MutableOrderedMap. collectShort(ShortFunction<? super V> shortFunction)
ShortList
OrderedMap. collectShort(ShortFunction<? super V> shortFunction)
ShortBag
UnsortedMapIterable. collectShort(ShortFunction<? super V> shortFunction)
-
Uses of ShortFunction in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type ShortFunction Modifier and Type Method Description ImmutableShortBag
ImmutablePrimitiveObjectMap. collectShort(ShortFunction<? super V> shortFunction)
MutableShortBag
MutablePrimitiveObjectMap. collectShort(ShortFunction<? super V> shortFunction)
ShortBag
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
Methods in org.eclipse.collections.api.map.sorted with parameters of type ShortFunction Modifier and Type Method Description ImmutableShortList
ImmutableSortedMap. collectShort(ShortFunction<? super V> shortFunction)
MutableShortList
MutableSortedMap. collectShort(ShortFunction<? super V> shortFunction)
ShortList
SortedMapIterable. collectShort(ShortFunction<? super V> shortFunction)
-
Uses of ShortFunction in org.eclipse.collections.api.ordered
Methods in org.eclipse.collections.api.ordered with parameters of type ShortFunction Modifier and Type Method Description OrderedShortIterable
OrderedIterable. collectShort(ShortFunction<? super T> shortFunction)
ReversibleShortIterable
ReversibleIterable. collectShort(ShortFunction<? super T> shortFunction)
-
Uses of ShortFunction in org.eclipse.collections.api.set
Methods in org.eclipse.collections.api.set with parameters of type ShortFunction Modifier and Type Method Description ImmutableShortSet
ImmutableSet. collectShort(ShortFunction<? super T> shortFunction)
default MutableShortSet
MutableSet. collectShort(ShortFunction<? super T> shortFunction)
ShortSet
UnsortedSetIterable. collectShort(ShortFunction<? super T> shortFunction)
-
Uses of ShortFunction in org.eclipse.collections.api.set.sorted
Methods in org.eclipse.collections.api.set.sorted with parameters of type ShortFunction Modifier and Type Method Description ImmutableShortList
ImmutableSortedSet. collectShort(ShortFunction<? super T> shortFunction)
MutableShortList
MutableSortedSet. collectShort(ShortFunction<? super T> shortFunction)
ShortList
SortedSetIterable. collectShort(ShortFunction<? super T> shortFunction)
-
Uses of ShortFunction in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack with parameters of type ShortFunction Modifier and Type Method Description ImmutableShortStack
ImmutableStack. collectShort(ShortFunction<? super T> shortFunction)
MutableShortStack
MutableStack. collectShort(ShortFunction<? super T> shortFunction)
ShortStack
StackIterable. collectShort(ShortFunction<? super T> shortFunction)
-
Uses of ShortFunction in org.eclipse.collections.impl
Methods in org.eclipse.collections.impl with parameters of type ShortFunction Modifier and Type Method Description ShortIterable
UnmodifiableRichIterable. 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
Methods in org.eclipse.collections.impl.bag with parameters of type ShortFunction Modifier and Type Method Description <R extends MutableShortCollection>
RAbstractBag. collectShort(ShortFunction<? super T> shortFunction, R target)
-
Uses of ShortFunction in org.eclipse.collections.impl.bag.immutable
Methods in org.eclipse.collections.impl.bag.immutable with parameters of type ShortFunction Modifier and Type Method Description ImmutableShortBag
AbstractImmutableBag. collectShort(ShortFunction<? super T> shortFunction)
ImmutableShortBag
ImmutableEmptyBag. collectShort(ShortFunction<? super T> shortFunction)
-
Uses of ShortFunction in org.eclipse.collections.impl.bag.mutable
Methods in org.eclipse.collections.impl.bag.mutable with parameters of type ShortFunction Modifier and Type Method Description MutableShortBag
MultiReaderHashBag. collectShort(ShortFunction<? super T> shortFunction)
MutableShortBag
MultiReaderHashBag.UntouchableMutableBag. collectShort(ShortFunction<? super T> shortFunction)
MutableShortBag
SynchronizedBag. collectShort(ShortFunction<? super T> shortFunction)
MutableShortBag
UnmodifiableBag. collectShort(ShortFunction<? super T> shortFunction)
-
Uses of ShortFunction in org.eclipse.collections.impl.bag.sorted.immutable
Methods in org.eclipse.collections.impl.bag.sorted.immutable with parameters of type ShortFunction Modifier and Type Method Description ImmutableShortList
AbstractImmutableSortedBag. collectShort(ShortFunction<? super T> shortFunction)
-
Uses of ShortFunction in org.eclipse.collections.impl.bag.sorted.mutable
Methods in org.eclipse.collections.impl.bag.sorted.mutable with parameters of type ShortFunction Modifier and Type Method Description MutableShortList
AbstractMutableSortedBag. collectShort(ShortFunction<? super T> shortFunction)
MutableShortList
SynchronizedSortedBag. collectShort(ShortFunction<? super T> shortFunction)
MutableShortList
UnmodifiableSortedBag. collectShort(ShortFunction<? super T> shortFunction)
-
Uses of ShortFunction in org.eclipse.collections.impl.bimap
Methods in org.eclipse.collections.impl.bimap with parameters of type ShortFunction Modifier and Type Method Description <R extends MutableShortCollection>
RAbstractBiMap. collectShort(ShortFunction<? super V> shortFunction, R target)
-
Uses of ShortFunction in org.eclipse.collections.impl.bimap.immutable
Methods in org.eclipse.collections.impl.bimap.immutable with parameters of type ShortFunction Modifier and Type Method Description ImmutableShortBag
AbstractImmutableBiMap. collectShort(ShortFunction<? super V> shortFunction)
-
Uses of ShortFunction in org.eclipse.collections.impl.bimap.mutable
Methods in org.eclipse.collections.impl.bimap.mutable with parameters of type ShortFunction Modifier and Type Method Description MutableShortBag
AbstractMutableBiMap. collectShort(ShortFunction<? super V> shortFunction)
ShortIterable
UnmodifiableBiMap. 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
Fields in org.eclipse.collections.impl.block.comparator.primitive declared as ShortFunction Modifier and Type Field Description private ShortFunction<T>
ShortFunctionComparator. function
Constructors in org.eclipse.collections.impl.block.comparator.primitive with parameters of type ShortFunction Constructor Description ShortFunctionComparator(ShortFunction<T> function)
-
Uses of ShortFunction in org.eclipse.collections.impl.block.factory
Classes in org.eclipse.collections.impl.block.factory that implement ShortFunction Modifier and Type Class Description static class
Functions.ShortFunctionChain<T1,T2>
private static class
PrimitiveFunctions.UnboxIntegerToShort
private static class
StringFunctions.ToPrimitiveShortFunction
Fields in org.eclipse.collections.impl.block.factory declared as ShortFunction Modifier and Type Field Description private ShortFunction<? super T>
HashingStrategies.ShortFunctionHashingStrategy. function
private ShortFunction<? super T2>
Functions.ShortFunctionChain. function2
private static ShortFunction<java.lang.String>
StringFunctions. TO_PRIMITIVE_SHORT
Methods in org.eclipse.collections.impl.block.factory that return ShortFunction Modifier and Type Method Description static ShortFunction<java.lang.String>
StringFunctions. toPrimitiveShort()
static ShortFunction<java.lang.Integer>
PrimitiveFunctions. unboxIntegerToShort()
Methods in org.eclipse.collections.impl.block.factory with parameters of type ShortFunction Modifier and Type Method Description static <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.ShortFunctionChain<T1,T3>
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)
Constructors in org.eclipse.collections.impl.block.factory with parameters of type ShortFunction Constructor Description ShortFunctionChain(Function<T1,T2> function1, ShortFunction<? super T2> function2)
ShortFunctionHashingStrategy(ShortFunction<? super T> function)
-
Uses of ShortFunction in org.eclipse.collections.impl.block.procedure
Fields in org.eclipse.collections.impl.block.procedure declared as ShortFunction Modifier and Type Field Description protected ShortFunction<? super T>
SumOfShortProcedure. function
Constructors in org.eclipse.collections.impl.block.procedure with parameters of type ShortFunction Constructor Description SumOfShortProcedure(ShortFunction<? super T> function)
-
Uses of ShortFunction in org.eclipse.collections.impl.block.procedure.primitive
Fields in org.eclipse.collections.impl.block.procedure.primitive declared as ShortFunction Modifier and Type Field Description private ShortFunction<? super T>
CollectShortProcedure. shortFunction
Constructors in org.eclipse.collections.impl.block.procedure.primitive with parameters of type ShortFunction Constructor Description CollectShortProcedure(ShortFunction<? super T> shortFunction, MutableShortCollection targetCollection)
-
Uses of ShortFunction in org.eclipse.collections.impl.collection
Methods in org.eclipse.collections.impl.collection with parameters of type ShortFunction Modifier and Type Method Description ShortIterable
AbstractSynchronizedRichIterable. 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
Methods in org.eclipse.collections.impl.collection.mutable with parameters of type ShortFunction Modifier and Type Method Description <R extends MutableShortCollection>
RAbstractCollectionAdapter. collectShort(ShortFunction<? super T> shortFunction, R target)
<R extends MutableShortCollection>
RAbstractMultiReaderMutableCollection. collectShort(ShortFunction<? super T> shortFunction, R target)
<R extends MutableShortCollection>
RAbstractMultiReaderMutableCollection.UntouchableMutableCollection. collectShort(ShortFunction<? super T> shortFunction, R target)
MutableShortCollection
AbstractSynchronizedMutableCollection. collectShort(ShortFunction<? super T> shortFunction)
MutableShortCollection
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
Methods in org.eclipse.collections.impl.collector with parameters of type ShortFunction Modifier and Type Method Description static <T,R extends MutableShortCollection>
java.util.stream.Collector<T,?,R>Collectors2. collectShort(ShortFunction<? super T> function, java.util.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
Methods in org.eclipse.collections.impl.lazy with parameters of type ShortFunction Modifier and Type Method Description LazyShortIterable
AbstractLazyIterable. collectShort(ShortFunction<? super T> shortFunction)
-
Uses of ShortFunction in org.eclipse.collections.impl.lazy.primitive
Fields in org.eclipse.collections.impl.lazy.primitive declared as ShortFunction Modifier and Type Field Description private ShortFunction<? super T>
CollectShortIterable. function
private ShortFunction<? super T>
CollectShortIterable.ShortFunctionToProcedure. function
Constructors in org.eclipse.collections.impl.lazy.primitive with parameters of type ShortFunction Constructor Description CollectShortIterable(LazyIterable<T> adapted, ShortFunction<? super T> function)
ShortFunctionToProcedure(ShortFunction<? super T> function)
-
Uses of ShortFunction in org.eclipse.collections.impl.list.fixed
Methods in org.eclipse.collections.impl.list.fixed with parameters of type ShortFunction Modifier and Type Method Description MutableList<T>
EmptyList. sortThisByShort(ShortFunction<? super T> function)
MutableList<T>
SingletonList. sortThisByShort(ShortFunction<? super T> function)
-
Uses of ShortFunction in org.eclipse.collections.impl.list.immutable
Methods in org.eclipse.collections.impl.list.immutable with parameters of type ShortFunction Modifier and Type Method Description ImmutableShortList
AbstractImmutableList. collectShort(ShortFunction<? super T> shortFunction)
-
Uses of ShortFunction in org.eclipse.collections.impl.list.mutable
Methods in org.eclipse.collections.impl.list.mutable with parameters of type ShortFunction Modifier and Type Method Description <R extends MutableShortCollection>
RFastList. collectShort(ShortFunction<? super T> shortFunction, R target)
MutableShortList
MultiReaderFastList. collectShort(ShortFunction<? super T> shortFunction)
MutableShortList
MultiReaderFastList.UntouchableMutableList. collectShort(ShortFunction<? super T> shortFunction)
MutableShortList
SynchronizedMutableList. collectShort(ShortFunction<? super T> shortFunction)
MutableShortList
UnmodifiableMutableList. collectShort(ShortFunction<? super T> shortFunction)
MutableList<T>
AbstractListAdapter. sortThisByShort(ShortFunction<? super T> function)
MutableList<T>
AbstractMutableList. sortThisByShort(ShortFunction<? super T> function)
MultiReaderList<T>
MultiReaderFastList. sortThisByShort(ShortFunction<? super T> function)
MutableList<T>
MultiReaderFastList.UntouchableMutableList. sortThisByShort(ShortFunction<? super T> function)
MutableList<T>
SynchronizedMutableList. sortThisByShort(ShortFunction<? super T> function)
MutableList<T>
UnmodifiableMutableList. sortThisByShort(ShortFunction<? super T> function)
-
Uses of ShortFunction in org.eclipse.collections.impl.map.immutable
Methods in org.eclipse.collections.impl.map.immutable with parameters of type ShortFunction Modifier and Type Method Description ImmutableShortBag
AbstractImmutableMap. collectShort(ShortFunction<? super V> shortFunction)
-
Uses of ShortFunction in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive with parameters of type ShortFunction Modifier and Type Method Description ImmutableShortBag
ImmutableByteObjectEmptyMap. collectShort(ShortFunction<? super V> shortFunction)
<R extends MutableShortCollection>
RImmutableByteObjectEmptyMap. collectShort(ShortFunction<? super V> shortFunction, R target)
ImmutableShortBag
ImmutableByteObjectHashMap. collectShort(ShortFunction<? super V> shortFunction)
<R extends MutableShortCollection>
RImmutableByteObjectHashMap. collectShort(ShortFunction<? super V> shortFunction, R target)
ImmutableShortBag
ImmutableByteObjectSingletonMap. collectShort(ShortFunction<? super V> shortFunction)
<R extends MutableShortCollection>
RImmutableByteObjectSingletonMap. collectShort(ShortFunction<? super V> shortFunction, R target)
ImmutableShortBag
ImmutableCharObjectEmptyMap. collectShort(ShortFunction<? super V> shortFunction)
<R extends MutableShortCollection>
RImmutableCharObjectEmptyMap. collectShort(ShortFunction<? super V> shortFunction, R target)
ImmutableShortBag
ImmutableCharObjectHashMap. collectShort(ShortFunction<? super V> shortFunction)
<R extends MutableShortCollection>
RImmutableCharObjectHashMap. collectShort(ShortFunction<? super V> shortFunction, R target)
ImmutableShortBag
ImmutableCharObjectSingletonMap. collectShort(ShortFunction<? super V> shortFunction)
<R extends MutableShortCollection>
RImmutableCharObjectSingletonMap. collectShort(ShortFunction<? super V> shortFunction, R target)
ImmutableShortBag
ImmutableDoubleObjectEmptyMap. collectShort(ShortFunction<? super V> shortFunction)
<R extends MutableShortCollection>
RImmutableDoubleObjectEmptyMap. collectShort(ShortFunction<? super V> shortFunction, R target)
ImmutableShortBag
ImmutableDoubleObjectHashMap. collectShort(ShortFunction<? super V> shortFunction)
<R extends MutableShortCollection>
RImmutableDoubleObjectHashMap. collectShort(ShortFunction<? super V> shortFunction, R target)
ImmutableShortBag
ImmutableDoubleObjectSingletonMap. collectShort(ShortFunction<? super V> shortFunction)
<R extends MutableShortCollection>
RImmutableDoubleObjectSingletonMap. collectShort(ShortFunction<? super V> shortFunction, R target)
ImmutableShortBag
ImmutableFloatObjectEmptyMap. collectShort(ShortFunction<? super V> shortFunction)
<R extends MutableShortCollection>
RImmutableFloatObjectEmptyMap. collectShort(ShortFunction<? super V> shortFunction, R target)
ImmutableShortBag
ImmutableFloatObjectHashMap. collectShort(ShortFunction<? super V> shortFunction)
<R extends MutableShortCollection>
RImmutableFloatObjectHashMap. collectShort(ShortFunction<? super V> shortFunction, R target)
ImmutableShortBag
ImmutableFloatObjectSingletonMap. collectShort(ShortFunction<? super V> shortFunction)
<R extends MutableShortCollection>
RImmutableFloatObjectSingletonMap. collectShort(ShortFunction<? super V> shortFunction, R target)
ImmutableShortBag
ImmutableIntObjectEmptyMap. collectShort(ShortFunction<? super V> shortFunction)
<R extends MutableShortCollection>
RImmutableIntObjectEmptyMap. collectShort(ShortFunction<? super V> shortFunction, R target)
ImmutableShortBag
ImmutableIntObjectHashMap. collectShort(ShortFunction<? super V> shortFunction)
<R extends MutableShortCollection>
RImmutableIntObjectHashMap. collectShort(ShortFunction<? super V> shortFunction, R target)
ImmutableShortBag
ImmutableIntObjectSingletonMap. collectShort(ShortFunction<? super V> shortFunction)
<R extends MutableShortCollection>
RImmutableIntObjectSingletonMap. collectShort(ShortFunction<? super V> shortFunction, R target)
ImmutableShortBag
ImmutableLongObjectEmptyMap. collectShort(ShortFunction<? super V> shortFunction)
<R extends MutableShortCollection>
RImmutableLongObjectEmptyMap. collectShort(ShortFunction<? super V> shortFunction, R target)
ImmutableShortBag
ImmutableLongObjectHashMap. collectShort(ShortFunction<? super V> shortFunction)
<R extends MutableShortCollection>
RImmutableLongObjectHashMap. collectShort(ShortFunction<? super V> shortFunction, R target)
ImmutableShortBag
ImmutableLongObjectSingletonMap. collectShort(ShortFunction<? super V> shortFunction)
<R extends MutableShortCollection>
RImmutableLongObjectSingletonMap. collectShort(ShortFunction<? super V> shortFunction, R target)
ImmutableShortBag
ImmutableShortObjectEmptyMap. collectShort(ShortFunction<? super V> shortFunction)
<R extends MutableShortCollection>
RImmutableShortObjectEmptyMap. collectShort(ShortFunction<? super V> shortFunction, R target)
ImmutableShortBag
ImmutableShortObjectHashMap. collectShort(ShortFunction<? super V> shortFunction)
<R extends MutableShortCollection>
RImmutableShortObjectHashMap. collectShort(ShortFunction<? super V> shortFunction, R target)
ImmutableShortBag
ImmutableShortObjectSingletonMap. collectShort(ShortFunction<? super V> shortFunction)
<R extends MutableShortCollection>
RImmutableShortObjectSingletonMap. collectShort(ShortFunction<? super V> shortFunction, R target)
<T> ImmutableByteShortMap
ImmutableByteShortMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
<T> ImmutableCharShortMap
ImmutableCharShortMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
<T> ImmutableDoubleShortMap
ImmutableDoubleShortMapFactoryImpl. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
<T> ImmutableFloatShortMap
ImmutableFloatShortMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
<T> ImmutableIntShortMap
ImmutableIntShortMapFactoryImpl. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
<T> ImmutableLongShortMap
ImmutableLongShortMapFactoryImpl. from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
<T,K>
ImmutableObjectShortMap<K>ImmutableObjectShortMapFactoryImpl. from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, ShortFunction<? super T> valueFunction)
<T> ImmutableShortBooleanMap
ImmutableShortBooleanMapFactoryImpl. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
<T> ImmutableShortByteMap
ImmutableShortByteMapFactoryImpl. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
<T> ImmutableShortCharMap
ImmutableShortCharMapFactoryImpl. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
<T> ImmutableShortDoubleMap
ImmutableShortDoubleMapFactoryImpl. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
<T> ImmutableShortFloatMap
ImmutableShortFloatMapFactoryImpl. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
<T> ImmutableShortIntMap
ImmutableShortIntMapFactoryImpl. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
<T> ImmutableShortLongMap
ImmutableShortLongMapFactoryImpl. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)
<T,V>
ImmutableShortObjectMap<V>ImmutableShortObjectMapFactoryImpl. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)
<T> ImmutableShortShortMap
ImmutableShortShortMapFactoryImpl. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
-
Uses of ShortFunction in org.eclipse.collections.impl.map.mutable
Methods in org.eclipse.collections.impl.map.mutable with parameters of type ShortFunction Modifier and Type Method Description MutableShortBag
AbstractMutableMap. collectShort(ShortFunction<? super V> shortFunction)
MutableShortBag
SynchronizedMutableMap. collectShort(ShortFunction<? super V> shortFunction)
MutableShortBag
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
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type ShortFunction Modifier and Type Method Description MutableShortBag
ByteObjectHashMap. collectShort(ShortFunction<? super V> shortFunction)
MutableShortBag
CharObjectHashMap. collectShort(ShortFunction<? super V> shortFunction)
MutableShortBag
DoubleObjectHashMap. collectShort(ShortFunction<? super V> shortFunction)
MutableShortBag
FloatObjectHashMap. collectShort(ShortFunction<? super V> shortFunction)
MutableShortBag
IntObjectHashMap. collectShort(ShortFunction<? super V> shortFunction)
MutableShortBag
LongObjectHashMap. collectShort(ShortFunction<? super V> shortFunction)
MutableShortBag
ShortObjectHashMap. collectShort(ShortFunction<? super V> shortFunction)
MutableShortBag
SynchronizedByteObjectMap. collectShort(ShortFunction<? super V> shortFunction)
<R extends MutableShortCollection>
RSynchronizedByteObjectMap. collectShort(ShortFunction<? super V> shortFunction, R target)
MutableShortBag
SynchronizedCharObjectMap. collectShort(ShortFunction<? super V> shortFunction)
<R extends MutableShortCollection>
RSynchronizedCharObjectMap. collectShort(ShortFunction<? super V> shortFunction, R target)
MutableShortBag
SynchronizedDoubleObjectMap. collectShort(ShortFunction<? super V> shortFunction)
<R extends MutableShortCollection>
RSynchronizedDoubleObjectMap. collectShort(ShortFunction<? super V> shortFunction, R target)
MutableShortBag
SynchronizedFloatObjectMap. collectShort(ShortFunction<? super V> shortFunction)
<R extends MutableShortCollection>
RSynchronizedFloatObjectMap. collectShort(ShortFunction<? super V> shortFunction, R target)
MutableShortBag
SynchronizedIntObjectMap. collectShort(ShortFunction<? super V> shortFunction)
<R extends MutableShortCollection>
RSynchronizedIntObjectMap. collectShort(ShortFunction<? super V> shortFunction, R target)
MutableShortBag
SynchronizedLongObjectMap. collectShort(ShortFunction<? super V> shortFunction)
<R extends MutableShortCollection>
RSynchronizedLongObjectMap. collectShort(ShortFunction<? super V> shortFunction, R target)
MutableShortBag
SynchronizedShortObjectMap. collectShort(ShortFunction<? super V> shortFunction)
<R extends MutableShortCollection>
RSynchronizedShortObjectMap. collectShort(ShortFunction<? super V> shortFunction, R target)
MutableShortBag
UnmodifiableByteObjectMap. collectShort(ShortFunction<? super V> shortFunction)
<R extends MutableShortCollection>
RUnmodifiableByteObjectMap. collectShort(ShortFunction<? super V> shortFunction, R target)
MutableShortBag
UnmodifiableCharObjectMap. collectShort(ShortFunction<? super V> shortFunction)
<R extends MutableShortCollection>
RUnmodifiableCharObjectMap. collectShort(ShortFunction<? super V> shortFunction, R target)
MutableShortBag
UnmodifiableDoubleObjectMap. collectShort(ShortFunction<? super V> shortFunction)
<R extends MutableShortCollection>
RUnmodifiableDoubleObjectMap. collectShort(ShortFunction<? super V> shortFunction, R target)
MutableShortBag
UnmodifiableFloatObjectMap. collectShort(ShortFunction<? super V> shortFunction)
<R extends MutableShortCollection>
RUnmodifiableFloatObjectMap. collectShort(ShortFunction<? super V> shortFunction, R target)
MutableShortBag
UnmodifiableIntObjectMap. collectShort(ShortFunction<? super V> shortFunction)
<R extends MutableShortCollection>
RUnmodifiableIntObjectMap. collectShort(ShortFunction<? super V> shortFunction, R target)
MutableShortBag
UnmodifiableLongObjectMap. collectShort(ShortFunction<? super V> shortFunction)
<R extends MutableShortCollection>
RUnmodifiableLongObjectMap. collectShort(ShortFunction<? super V> shortFunction, R target)
MutableShortBag
UnmodifiableShortObjectMap. collectShort(ShortFunction<? super V> shortFunction)
<R extends MutableShortCollection>
RUnmodifiableShortObjectMap. collectShort(ShortFunction<? super V> shortFunction, R target)
<T> MutableByteShortMap
MutableByteShortMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
<T> MutableCharShortMap
MutableCharShortMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
<T> MutableDoubleShortMap
MutableDoubleShortMapFactoryImpl. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
<T> MutableFloatShortMap
MutableFloatShortMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
<T> MutableIntShortMap
MutableIntShortMapFactoryImpl. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
<T> MutableLongShortMap
MutableLongShortMapFactoryImpl. from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
<T,K>
MutableObjectShortMap<K>MutableObjectShortMapFactoryImpl. from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, ShortFunction<? super T> valueFunction)
<T> MutableShortBooleanMap
MutableShortBooleanMapFactoryImpl. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
<T> MutableShortByteMap
MutableShortByteMapFactoryImpl. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
<T> MutableShortCharMap
MutableShortCharMapFactoryImpl. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
<T> MutableShortDoubleMap
MutableShortDoubleMapFactoryImpl. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
<T> MutableShortFloatMap
MutableShortFloatMapFactoryImpl. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
<T> MutableShortIntMap
MutableShortIntMapFactoryImpl. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
<T> MutableShortLongMap
MutableShortLongMapFactoryImpl. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)
<T,V>
MutableShortObjectMap<V>MutableShortObjectMapFactoryImpl. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)
<T> MutableShortShortMap
MutableShortShortMapFactoryImpl. from(java.lang.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
Methods in org.eclipse.collections.impl.map.ordered.mutable with parameters of type ShortFunction Modifier and Type Method Description MutableShortList
OrderedMapAdapter. collectShort(ShortFunction<? super V> shortFunction)
MutableShortList
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
Methods in org.eclipse.collections.impl.map.sorted.immutable with parameters of type ShortFunction Modifier and Type Method Description ImmutableShortList
AbstractImmutableSortedMap. collectShort(ShortFunction<? super V> shortFunction)
-
Uses of ShortFunction in org.eclipse.collections.impl.map.sorted.mutable
Methods in org.eclipse.collections.impl.map.sorted.mutable with parameters of type ShortFunction Modifier and Type Method Description MutableShortList
AbstractMutableSortedMap. collectShort(ShortFunction<? super V> shortFunction)
MutableShortList
SynchronizedSortedMap. collectShort(ShortFunction<? super V> shortFunction)
MutableShortList
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
Methods in org.eclipse.collections.impl.set.immutable with parameters of type ShortFunction Modifier and Type Method Description ImmutableShortSet
AbstractImmutableSet. collectShort(ShortFunction<? super T> shortFunction)
-
Uses of ShortFunction in org.eclipse.collections.impl.set.mutable
Methods in org.eclipse.collections.impl.set.mutable with parameters of type ShortFunction Modifier and Type Method Description MutableShortSet
MultiReaderUnifiedSet. collectShort(ShortFunction<? super T> shortFunction)
MutableShortSet
MultiReaderUnifiedSet.UntouchableMutableSet. collectShort(ShortFunction<? super T> shortFunction)
MutableShortSet
SynchronizedMutableSet. collectShort(ShortFunction<? super T> shortFunction)
MutableShortSet
UnmodifiableMutableSet. collectShort(ShortFunction<? super T> shortFunction)
-
Uses of ShortFunction in org.eclipse.collections.impl.set.sorted.immutable
Methods in org.eclipse.collections.impl.set.sorted.immutable with parameters of type ShortFunction Modifier and Type Method Description ImmutableShortList
AbstractImmutableSortedSet. collectShort(ShortFunction<? super T> shortFunction)
-
Uses of ShortFunction in org.eclipse.collections.impl.set.sorted.mutable
Methods in org.eclipse.collections.impl.set.sorted.mutable with parameters of type ShortFunction Modifier and Type Method Description MutableShortList
SortedSetAdapter. collectShort(ShortFunction<? super T> shortFunction)
MutableShortList
SynchronizedSortedSet. collectShort(ShortFunction<? super T> shortFunction)
MutableShortList
TreeSortedSet. collectShort(ShortFunction<? super T> shortFunction)
MutableShortList
UnmodifiableSortedSet. collectShort(ShortFunction<? super T> shortFunction)
-
Uses of ShortFunction in org.eclipse.collections.impl.stack.immutable
Methods in org.eclipse.collections.impl.stack.immutable with parameters of type ShortFunction Modifier and Type Method Description ImmutableShortStack
ImmutableArrayStack. collectShort(ShortFunction<? super T> shortFunction)
Deprecated.<R extends MutableShortCollection>
RImmutableArrayStack. collectShort(ShortFunction<? super T> shortFunction, R target)
Deprecated.ImmutableShortStack
ImmutableEmptyStack. collectShort(ShortFunction<? super T> shortFunction)
<R extends MutableShortCollection>
RImmutableEmptyStack. collectShort(ShortFunction<? super T> shortFunction, R target)
ImmutableShortStack
ImmutableNotEmptyStack. collectShort(ShortFunction<? super T> function)
-
Uses of ShortFunction in org.eclipse.collections.impl.stack.mutable
Methods in org.eclipse.collections.impl.stack.mutable with parameters of type ShortFunction Modifier and Type Method Description MutableShortStack
ArrayStack. collectShort(ShortFunction<? super T> shortFunction)
<R extends MutableShortCollection>
RArrayStack. collectShort(ShortFunction<? super T> shortFunction, R target)
MutableShortStack
SynchronizedStack. collectShort(ShortFunction<? super T> shortFunction)
<R extends MutableShortCollection>
RSynchronizedStack. collectShort(ShortFunction<? super T> shortFunction, R target)
MutableShortStack
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
Methods in org.eclipse.collections.impl.utility with parameters of type ShortFunction Modifier and Type Method Description static <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(java.util.ArrayList<T> list, ShortFunction<? super T> shortFunction)
static <T,R extends MutableShortCollection>
RArrayListIterate. collectShort(java.util.ArrayList<T> list, ShortFunction<? super T> shortFunction, R target)
static <T> MutableShortCollection
Iterate. collectShort(java.lang.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(java.lang.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(java.util.List<T> list, ShortFunction<? super T> shortFunction)
static <T,R extends MutableShortCollection>
RListIterate. collectShort(java.util.List<T> list, ShortFunction<? super T> shortFunction, R target)
static <K,V>
MutableShortCollectionMapIterate. collectShort(java.util.Map<K,V> map, ShortFunction<? super V> shortFunction)
static <K,V,R extends MutableShortCollection>
RMapIterate. collectShort(java.util.Map<K,V> map, ShortFunction<? super V> shortFunction, R target)
private static <T,R extends MutableShortCollection>
RArrayListIterate. collectShortFromInternalArray(java.util.ArrayList<T> source, ShortFunction<? super T> shortFunction, int elementsToCollect, R target)
-
Uses of ShortFunction in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal with parameters of type ShortFunction Modifier and Type Method Description static <T> MutableShortCollection
IterableIterate. collectShort(java.lang.Iterable<T> iterable, ShortFunction<? super T> shortFunction)
static <T,R extends MutableShortCollection>
RIterableIterate. collectShort(java.lang.Iterable<T> iterable, ShortFunction<? super T> shortFunction, R target)
static <T> MutableShortCollection
IteratorIterate. collectShort(java.util.Iterator<T> iterator, ShortFunction<? super T> shortFunction)
static <T,R extends MutableShortCollection>
RIteratorIterate. collectShort(java.util.Iterator<T> iterator, ShortFunction<? super T> shortFunction, R target)
static <T> MutableShortList
RandomAccessListIterate. collectShort(java.util.List<T> list, ShortFunction<? super T> shortFunction)
static <T,R extends MutableShortCollection>
RRandomAccessListIterate. collectShort(java.util.List<T> list, ShortFunction<? super T> shortFunction, R target)
-