Uses of Interface
org.eclipse.collections.api.block.function.primitive.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 of  
List. | 
| org.eclipse.collections.api.map | 
 This package contains interfaces for map API which enhance the performance and functionality of  
Map | 
| 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 of  
Set. | 
| 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 the  
ImmutableBag interface. | 
| org.eclipse.collections.impl.bag.mutable | 
 This package contains implementations of the  
MutableBag interface. | 
| org.eclipse.collections.impl.bag.sorted.mutable | 
 This package contains implementations of  
MutableSortedBag. | 
| org.eclipse.collections.impl.bimap | |
| org.eclipse.collections.impl.bimap.immutable | |
| org.eclipse.collections.impl.bimap.mutable | 
 This package contains implementations of the  
MutableBiMap interface. | 
| org.eclipse.collections.impl.block.comparator.primitive | 
 This package contains implementations of the  
SerializableComparator interface to compare primitive double, int and long. | 
| org.eclipse.collections.impl.block.factory | 
 This package contains factory implementations for  
Function, Predicate, SerializableComparator and Procedure. | 
| org.eclipse.collections.impl.block.procedure | 
 This package contains implementations of  
Procedure and Procedure2. | 
| 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 the  
MutableCollection interface. | 
| org.eclipse.collections.impl.collector | |
| org.eclipse.collections.impl.lazy | 
 This package contains implementations of the  
LazyIterable interface. | 
| org.eclipse.collections.impl.lazy.primitive | 
 This package contains implementations of the lazy primitive iterator interfaces. 
 | 
| org.eclipse.collections.impl.list.mutable | 
 This package contains implementations of the  
MutableList interface. | 
| org.eclipse.collections.impl.map.immutable | 
 This package contains implementations of the  
ImmutableMap 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 the  
MutableMap 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 the  
MutableSortedMap interface. | 
| org.eclipse.collections.impl.map.sorted.mutable | 
 This package contains implementations of the  
MutableSortedMap interface. | 
| org.eclipse.collections.impl.set | |
| org.eclipse.collections.impl.set.immutable | 
 This package package contains the implementations of  
ImmutableSet. | 
| org.eclipse.collections.impl.set.mutable | 
 This package package contains implementations of  
MutableSet. | 
| org.eclipse.collections.impl.set.sorted.mutable | 
 This package contains implementations of  
MutableSortedSet. | 
| org.eclipse.collections.impl.stack.mutable | 
 This package contains implementations of the  
MutableStack 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 LazyShortIterableLazyIterable. collectShort(ShortFunction<? super T> shortFunction)Returns a lazy ShortIterable which will transform the underlying iterable data to short values based on the shortFunction.ShortIterableRichIterable. collectShort(ShortFunction<? super T> shortFunction)Returns a new primitiveshortiterable with the results of applying the specified function on each element of the source collection.<R extends MutableShortCollection>
RRichIterable. collectShort(ShortFunction<? super T> shortFunction, R target)Same asRichIterable.collectShort(ShortFunction), except that the results are gathered into the specifiedtargetcollection. - 
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 ImmutableShortBagImmutableBag. collectShort(ShortFunction<? super T> shortFunction)MutableShortBagMutableBag. collectShort(ShortFunction<? super T> shortFunction)ShortBagUnsortedBag. 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 ImmutableShortListImmutableSortedBag. collectShort(ShortFunction<? super T> shortFunction)MutableShortListMutableSortedBag. collectShort(ShortFunction<? super T> shortFunction)ShortListSortedBag. 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 ImmutableShortCollectionImmutableCollection. collectShort(ShortFunction<? super T> shortFunction)MutableShortCollectionMutableCollection. collectShort(ShortFunction<? super T> shortFunction)Returns a new primitiveshortiterable 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> ImmutableByteShortMapImmutableByteShortMapFactory. from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)Creates anImmutableByteShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableCharShortMapImmutableCharShortMapFactory. from(Iterable<T> iterable, CharFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)Creates anImmutableCharShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableDoubleShortMapImmutableDoubleShortMapFactory. from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)Creates anImmutableDoubleShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableFloatShortMapImmutableFloatShortMapFactory. from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)Creates anImmutableFloatShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableIntShortMapImmutableIntShortMapFactory. from(Iterable<T> iterable, IntFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)Creates anImmutableIntShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableLongShortMapImmutableLongShortMapFactory. from(Iterable<T> iterable, LongFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)Creates anImmutableLongShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T, K> ImmutableObjectShortMap<K>ImmutableObjectShortMapFactory. from(Iterable<T> iterable, Function<? super T,? extends K> keyFunction, ShortFunction<? super T> valueFunction)Creates anImmutableObjectShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableShortBooleanMapImmutableShortBooleanMapFactory. from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anImmutableShortBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableShortByteMapImmutableShortByteMapFactory. from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anImmutableShortByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableShortCharMapImmutableShortCharMapFactory. from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)Creates anImmutableShortCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableShortDoubleMapImmutableShortDoubleMapFactory. from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anImmutableShortDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableShortFloatMapImmutableShortFloatMapFactory. from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)Creates anImmutableShortFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableShortIntMapImmutableShortIntMapFactory. from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anImmutableShortIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableShortLongMapImmutableShortLongMapFactory. from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)Creates anImmutableShortLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T, V> ImmutableShortObjectMap<V>ImmutableShortObjectMapFactory. from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)Creates anImmutableShortObjectMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableShortShortMapImmutableShortShortMapFactory. from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)Creates anImmutableShortShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableByteShortMapMutableByteShortMapFactory. from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)Creates anMutableByteShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableCharShortMapMutableCharShortMapFactory. from(Iterable<T> iterable, CharFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)Creates anMutableCharShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableDoubleShortMapMutableDoubleShortMapFactory. from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)Creates anMutableDoubleShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableFloatShortMapMutableFloatShortMapFactory. from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)Creates anMutableFloatShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableIntShortMapMutableIntShortMapFactory. from(Iterable<T> iterable, IntFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)Creates anMutableIntShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableLongShortMapMutableLongShortMapFactory. from(Iterable<T> iterable, LongFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)Creates anMutableLongShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T, K> MutableObjectShortMap<K>MutableObjectShortMapFactory. from(Iterable<T> iterable, Function<? super T,? extends K> keyFunction, ShortFunction<? super T> valueFunction)Creates anMutableObjectShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableShortBooleanMapMutableShortBooleanMapFactory. from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anMutableShortBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableShortByteMapMutableShortByteMapFactory. from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anMutableShortByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableShortCharMapMutableShortCharMapFactory. from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)Creates anMutableShortCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableShortDoubleMapMutableShortDoubleMapFactory. from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anMutableShortDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableShortFloatMapMutableShortFloatMapFactory. from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)Creates anMutableShortFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableShortIntMapMutableShortIntMapFactory. from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anMutableShortIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableShortLongMapMutableShortLongMapFactory. from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)Creates anMutableShortLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T, V> MutableShortObjectMap<V>MutableShortObjectMapFactory. from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)Creates anMutableShortObjectMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableShortShortMapMutableShortShortMapFactory. from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)Creates anMutableShortShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction. - 
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 ImmutableShortListImmutableList. collectShort(ShortFunction<? super T> shortFunction)ShortListListIterable. collectShort(ShortFunction<? super T> shortFunction)MutableShortListMutableList. collectShort(ShortFunction<? super T> shortFunction)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 ImmutableShortBagImmutableMap. collectShort(ShortFunction<? super V> shortFunction)ImmutableShortListImmutableOrderedMap. collectShort(ShortFunction<? super V> shortFunction)MutableShortBagMutableMap. collectShort(ShortFunction<? super V> shortFunction)MutableShortListMutableOrderedMap. collectShort(ShortFunction<? super V> shortFunction)ShortListOrderedMap. collectShort(ShortFunction<? super V> shortFunction)ShortBagUnsortedMapIterable. 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 ImmutableShortBagImmutablePrimitiveObjectMap. collectShort(ShortFunction<? super V> shortFunction)MutableShortBagMutablePrimitiveObjectMap. collectShort(ShortFunction<? super V> shortFunction)ShortBagPrimitiveObjectMap. collectShort(ShortFunction<? super V> shortFunction)<P> shortMutableByteShortMap. 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> shortMutableCharShortMap. 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> shortMutableDoubleShortMap. 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> shortMutableFloatShortMap. 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> shortMutableIntShortMap. 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> shortMutableLongShortMap. 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> shortMutableObjectShortMap. 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> shortMutableShortShortMap. 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.shortMutableObjectShortMap. 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 ImmutableShortListImmutableSortedMap. collectShort(ShortFunction<? super V> shortFunction)MutableShortListMutableSortedMap. collectShort(ShortFunction<? super V> shortFunction)ShortListSortedMapIterable. 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 OrderedShortIterableOrderedIterable. collectShort(ShortFunction<? super T> shortFunction)ReversibleShortIterableReversibleIterable. 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 ImmutableShortSetImmutableSet. collectShort(ShortFunction<? super T> shortFunction)MutableShortSetMutableSet. collectShort(ShortFunction<? super T> shortFunction)ShortSetUnsortedSetIterable. 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 ImmutableShortListImmutableSortedSet. collectShort(ShortFunction<? super T> shortFunction)MutableShortListMutableSortedSet. collectShort(ShortFunction<? super T> shortFunction)ShortListSortedSetIterable. 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 ImmutableShortStackImmutableStack. collectShort(ShortFunction<? super T> shortFunction)MutableShortStackMutableStack. collectShort(ShortFunction<? super T> shortFunction)ShortStackStackIterable. 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 <R extends MutableShortCollection>
RAbstractRichIterable. collectShort(ShortFunction<? super T> shortFunction, R target)ShortIterableUnmodifiableRichIterable. 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 ImmutableShortBagAbstractImmutableBag. 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 MutableShortBagAbstractMutableBag. collectShort(ShortFunction<? super T> shortFunction)MutableShortBagMultiReaderHashBag. collectShort(ShortFunction<? super T> shortFunction)MutableShortBagSynchronizedBag. collectShort(ShortFunction<? super T> shortFunction)MutableShortBagUnmodifiableBag. 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 MutableShortListAbstractMutableSortedBag. collectShort(ShortFunction<? super T> shortFunction)MutableShortListSynchronizedSortedBag. collectShort(ShortFunction<? super T> shortFunction)MutableShortListUnmodifiableSortedBag. 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 ImmutableShortBagAbstractImmutableBiMap. 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 ShortIterableUnmodifiableBiMap. 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
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 classFunctions.ShortFunctionChain<T1,T2>Methods in org.eclipse.collections.impl.block.factory that return ShortFunction Modifier and Type Method Description static ShortFunction<String>StringFunctions. toPrimitiveShort()static ShortFunction<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) - 
Uses of ShortFunction in org.eclipse.collections.impl.block.procedure
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
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 ShortIterableAbstractSynchronizedRichIterable. 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 MutableShortCollectionAbstractCollectionAdapter. collectShort(ShortFunction<? super T> shortFunction)<R extends MutableShortCollection>
RAbstractCollectionAdapter. collectShort(ShortFunction<? super T> shortFunction, R target)<R extends MutableShortCollection>
RAbstractMultiReaderMutableCollection. collectShort(ShortFunction<? super T> shortFunction, R target)MutableShortCollectionAbstractSynchronizedMutableCollection. collectShort(ShortFunction<? super T> shortFunction)MutableShortCollectionAbstractUnmodifiableMutableCollection. 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>
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
Methods in org.eclipse.collections.impl.lazy with parameters of type ShortFunction Modifier and Type Method Description LazyShortIterableAbstractLazyIterable. collectShort(ShortFunction<? super T> shortFunction) - 
Uses of ShortFunction in org.eclipse.collections.impl.lazy.primitive
Constructors in org.eclipse.collections.impl.lazy.primitive with parameters of type ShortFunction Constructor Description CollectShortIterable(LazyIterable<T> adapted, ShortFunction<? super T> function) - 
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 MutableShortListAbstractListAdapter. collectShort(ShortFunction<? super T> shortFunction)MutableShortListAbstractMutableList. collectShort(ShortFunction<? super T> shortFunction)MutableShortListArrayListAdapter. collectShort(ShortFunction<? super T> shortFunction)MutableShortListFastList. collectShort(ShortFunction<? super T> shortFunction)<R extends MutableShortCollection>
RFastList. collectShort(ShortFunction<? super T> shortFunction, R target)MutableShortListMultiReaderFastList. collectShort(ShortFunction<? super T> shortFunction)MutableShortListRandomAccessListAdapter. collectShort(ShortFunction<? super T> shortFunction)MutableShortListSynchronizedMutableList. collectShort(ShortFunction<? super T> shortFunction)MutableShortListUnmodifiableMutableList. collectShort(ShortFunction<? super T> shortFunction)MutableList<T>AbstractListAdapter. sortThisByShort(ShortFunction<? super T> function)MutableList<T>AbstractMutableList. sortThisByShort(ShortFunction<? super T> function)MutableList<T>MultiReaderFastList. 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 ImmutableShortBagAbstractImmutableMap. 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 <T> ImmutableByteShortMapImmutableByteShortMapFactoryImpl. from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)<T> ImmutableCharShortMapImmutableCharShortMapFactoryImpl. from(Iterable<T> iterable, CharFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)<T> ImmutableDoubleShortMapImmutableDoubleShortMapFactoryImpl. from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)<T> ImmutableFloatShortMapImmutableFloatShortMapFactoryImpl. from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)<T> ImmutableIntShortMapImmutableIntShortMapFactoryImpl. from(Iterable<T> iterable, IntFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)<T> ImmutableLongShortMapImmutableLongShortMapFactoryImpl. 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)<T> ImmutableShortBooleanMapImmutableShortBooleanMapFactoryImpl. from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)<T> ImmutableShortByteMapImmutableShortByteMapFactoryImpl. from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)<T> ImmutableShortCharMapImmutableShortCharMapFactoryImpl. from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)<T> ImmutableShortDoubleMapImmutableShortDoubleMapFactoryImpl. from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)<T> ImmutableShortFloatMapImmutableShortFloatMapFactoryImpl. from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)<T> ImmutableShortIntMapImmutableShortIntMapFactoryImpl. from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)<T> ImmutableShortLongMapImmutableShortLongMapFactoryImpl. 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)<T> ImmutableShortShortMapImmutableShortShortMapFactoryImpl. from(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 MutableShortBagAbstractMutableMap. collectShort(ShortFunction<? super V> shortFunction)MutableShortBagSynchronizedMutableMap. collectShort(ShortFunction<? super V> shortFunction)MutableShortBagUnmodifiableMutableMap. 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 MutableShortBagByteObjectHashMap. collectShort(ShortFunction<? super V> shortFunction)<R extends MutableShortCollection>
RByteObjectHashMap. collectShort(ShortFunction<? super V> shortFunction, R target)MutableShortBagCharObjectHashMap. collectShort(ShortFunction<? super V> shortFunction)<R extends MutableShortCollection>
RCharObjectHashMap. collectShort(ShortFunction<? super V> shortFunction, R target)MutableShortBagDoubleObjectHashMap. collectShort(ShortFunction<? super V> shortFunction)<R extends MutableShortCollection>
RDoubleObjectHashMap. collectShort(ShortFunction<? super V> shortFunction, R target)MutableShortBagFloatObjectHashMap. collectShort(ShortFunction<? super V> shortFunction)<R extends MutableShortCollection>
RFloatObjectHashMap. collectShort(ShortFunction<? super V> shortFunction, R target)MutableShortBagIntObjectHashMap. collectShort(ShortFunction<? super V> shortFunction)<R extends MutableShortCollection>
RIntObjectHashMap. collectShort(ShortFunction<? super V> shortFunction, R target)MutableShortBagLongObjectHashMap. collectShort(ShortFunction<? super V> shortFunction)<R extends MutableShortCollection>
RLongObjectHashMap. collectShort(ShortFunction<? super V> shortFunction, R target)MutableShortBagShortObjectHashMap. collectShort(ShortFunction<? super V> shortFunction)<R extends MutableShortCollection>
RShortObjectHashMap. collectShort(ShortFunction<? super V> shortFunction, R target)MutableShortBagSynchronizedByteObjectMap. collectShort(ShortFunction<? super V> shortFunction)<R extends MutableShortCollection>
RSynchronizedByteObjectMap. collectShort(ShortFunction<? super V> shortFunction, R target)MutableShortBagSynchronizedCharObjectMap. collectShort(ShortFunction<? super V> shortFunction)<R extends MutableShortCollection>
RSynchronizedCharObjectMap. collectShort(ShortFunction<? super V> shortFunction, R target)MutableShortBagSynchronizedDoubleObjectMap. collectShort(ShortFunction<? super V> shortFunction)<R extends MutableShortCollection>
RSynchronizedDoubleObjectMap. collectShort(ShortFunction<? super V> shortFunction, R target)MutableShortBagSynchronizedFloatObjectMap. collectShort(ShortFunction<? super V> shortFunction)<R extends MutableShortCollection>
RSynchronizedFloatObjectMap. collectShort(ShortFunction<? super V> shortFunction, R target)MutableShortBagSynchronizedIntObjectMap. collectShort(ShortFunction<? super V> shortFunction)<R extends MutableShortCollection>
RSynchronizedIntObjectMap. collectShort(ShortFunction<? super V> shortFunction, R target)MutableShortBagSynchronizedLongObjectMap. collectShort(ShortFunction<? super V> shortFunction)<R extends MutableShortCollection>
RSynchronizedLongObjectMap. collectShort(ShortFunction<? super V> shortFunction, R target)MutableShortBagSynchronizedShortObjectMap. collectShort(ShortFunction<? super V> shortFunction)<R extends MutableShortCollection>
RSynchronizedShortObjectMap. collectShort(ShortFunction<? super V> shortFunction, R target)MutableShortBagUnmodifiableByteObjectMap. collectShort(ShortFunction<? super V> shortFunction)<R extends MutableShortCollection>
RUnmodifiableByteObjectMap. collectShort(ShortFunction<? super V> shortFunction, R target)MutableShortBagUnmodifiableCharObjectMap. collectShort(ShortFunction<? super V> shortFunction)<R extends MutableShortCollection>
RUnmodifiableCharObjectMap. collectShort(ShortFunction<? super V> shortFunction, R target)MutableShortBagUnmodifiableDoubleObjectMap. collectShort(ShortFunction<? super V> shortFunction)<R extends MutableShortCollection>
RUnmodifiableDoubleObjectMap. collectShort(ShortFunction<? super V> shortFunction, R target)MutableShortBagUnmodifiableFloatObjectMap. collectShort(ShortFunction<? super V> shortFunction)<R extends MutableShortCollection>
RUnmodifiableFloatObjectMap. collectShort(ShortFunction<? super V> shortFunction, R target)MutableShortBagUnmodifiableIntObjectMap. collectShort(ShortFunction<? super V> shortFunction)<R extends MutableShortCollection>
RUnmodifiableIntObjectMap. collectShort(ShortFunction<? super V> shortFunction, R target)MutableShortBagUnmodifiableLongObjectMap. collectShort(ShortFunction<? super V> shortFunction)<R extends MutableShortCollection>
RUnmodifiableLongObjectMap. collectShort(ShortFunction<? super V> shortFunction, R target)MutableShortBagUnmodifiableShortObjectMap. collectShort(ShortFunction<? super V> shortFunction)<R extends MutableShortCollection>
RUnmodifiableShortObjectMap. collectShort(ShortFunction<? super V> shortFunction, R target)<T> MutableByteShortMapMutableByteShortMapFactoryImpl. from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)<T> MutableCharShortMapMutableCharShortMapFactoryImpl. from(Iterable<T> iterable, CharFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)<T> MutableDoubleShortMapMutableDoubleShortMapFactoryImpl. from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)<T> MutableFloatShortMapMutableFloatShortMapFactoryImpl. from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)<T> MutableIntShortMapMutableIntShortMapFactoryImpl. from(Iterable<T> iterable, IntFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)<T> MutableLongShortMapMutableLongShortMapFactoryImpl. 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)<T> MutableShortBooleanMapMutableShortBooleanMapFactoryImpl. from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)<T> MutableShortByteMapMutableShortByteMapFactoryImpl. from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)<T> MutableShortCharMapMutableShortCharMapFactoryImpl. from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)<T> MutableShortDoubleMapMutableShortDoubleMapFactoryImpl. from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)<T> MutableShortFloatMapMutableShortFloatMapFactoryImpl. from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)<T> MutableShortIntMapMutableShortIntMapFactoryImpl. from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)<T> MutableShortLongMapMutableShortLongMapFactoryImpl. 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)<T> MutableShortShortMapMutableShortShortMapFactoryImpl. from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)<P> shortByteShortHashMap. getIfAbsentPutWith(byte key, ShortFunction<? super P> function, P parameter)<P> shortCharShortHashMap. getIfAbsentPutWith(char key, ShortFunction<? super P> function, P parameter)<P> shortDoubleShortHashMap. getIfAbsentPutWith(double key, ShortFunction<? super P> function, P parameter)<P> shortFloatShortHashMap. getIfAbsentPutWith(float key, ShortFunction<? super P> function, P parameter)<P> shortIntShortHashMap. getIfAbsentPutWith(int key, ShortFunction<? super P> function, P parameter)<P> shortLongShortHashMap. getIfAbsentPutWith(long key, ShortFunction<? super P> function, P parameter)<P> shortObjectShortHashMap. getIfAbsentPutWith(K key, ShortFunction<? super P> function, P parameter)<P> shortObjectShortHashMapWithHashingStrategy. getIfAbsentPutWith(K key, ShortFunction<? super P> function, P parameter)<P> shortShortShortHashMap. getIfAbsentPutWith(short key, ShortFunction<? super P> function, P parameter)<P> shortSynchronizedByteShortMap. getIfAbsentPutWith(byte key, ShortFunction<? super P> function, P parameter)<P> shortSynchronizedCharShortMap. getIfAbsentPutWith(char key, ShortFunction<? super P> function, P parameter)<P> shortSynchronizedDoubleShortMap. getIfAbsentPutWith(double key, ShortFunction<? super P> function, P parameter)<P> shortSynchronizedFloatShortMap. getIfAbsentPutWith(float key, ShortFunction<? super P> function, P parameter)<P> shortSynchronizedIntShortMap. getIfAbsentPutWith(int key, ShortFunction<? super P> function, P parameter)<P> shortSynchronizedLongShortMap. getIfAbsentPutWith(long key, ShortFunction<? super P> function, P parameter)<P> shortSynchronizedObjectShortMap. getIfAbsentPutWith(K key, ShortFunction<? super P> function, P parameter)<P> shortSynchronizedShortShortMap. getIfAbsentPutWith(short key, ShortFunction<? super P> function, P parameter)<P> shortUnmodifiableByteShortMap. getIfAbsentPutWith(byte key, ShortFunction<? super P> function, P parameter)<P> shortUnmodifiableCharShortMap. getIfAbsentPutWith(char key, ShortFunction<? super P> function, P parameter)<P> shortUnmodifiableDoubleShortMap. getIfAbsentPutWith(double key, ShortFunction<? super P> function, P parameter)<P> shortUnmodifiableFloatShortMap. getIfAbsentPutWith(float key, ShortFunction<? super P> function, P parameter)<P> shortUnmodifiableIntShortMap. getIfAbsentPutWith(int key, ShortFunction<? super P> function, P parameter)<P> shortUnmodifiableLongShortMap. getIfAbsentPutWith(long key, ShortFunction<? super P> function, P parameter)<P> shortUnmodifiableObjectShortMap. getIfAbsentPutWith(K key, ShortFunction<? super P> function, P parameter)<P> shortUnmodifiableShortShortMap. getIfAbsentPutWith(short key, ShortFunction<? super P> function, P parameter)shortObjectShortHashMap. getIfAbsentPutWithKey(K key, ShortFunction<? super K> function)shortObjectShortHashMapWithHashingStrategy. getIfAbsentPutWithKey(K key, ShortFunction<? super K> function)shortSynchronizedObjectShortMap. getIfAbsentPutWithKey(K key, ShortFunction<? super K> function)shortUnmodifiableObjectShortMap. 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 MutableShortListOrderedMapAdapter. collectShort(ShortFunction<? super V> shortFunction)MutableShortListUnmodifiableMutableOrderedMap. 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 ImmutableShortListAbstractImmutableSortedMap. 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 MutableShortListAbstractMutableSortedMap. collectShort(ShortFunction<? super V> shortFunction)MutableShortListSynchronizedSortedMap. collectShort(ShortFunction<? super V> shortFunction)MutableShortListUnmodifiableTreeMap. 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
Methods in org.eclipse.collections.impl.set with parameters of type ShortFunction Modifier and Type Method Description MutableShortSetAbstractUnifiedSet. collectShort(ShortFunction<? super T> shortFunction) - 
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 ImmutableShortSetAbstractImmutableSet. 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 MutableShortSetAbstractMutableSet. collectShort(ShortFunction<? super T> shortFunction)MutableShortSetMultiReaderUnifiedSet. collectShort(ShortFunction<? super T> shortFunction)MutableShortSetSetAdapter. collectShort(ShortFunction<? super T> shortFunction)MutableShortSetSynchronizedMutableSet. collectShort(ShortFunction<? super T> shortFunction)MutableShortSetUnmodifiableMutableSet. 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 MutableShortListSortedSetAdapter. collectShort(ShortFunction<? super T> shortFunction)MutableShortListSynchronizedSortedSet. collectShort(ShortFunction<? super T> shortFunction)MutableShortListTreeSortedSet. collectShort(ShortFunction<? super T> shortFunction)MutableShortListUnmodifiableSortedSet. collectShort(ShortFunction<? super T> shortFunction) - 
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 MutableShortStackArrayStack. collectShort(ShortFunction<? super T> shortFunction)<R extends MutableShortCollection>
RArrayStack. collectShort(ShortFunction<? super T> shortFunction, R target)MutableShortStackSynchronizedStack. collectShort(ShortFunction<? super T> shortFunction)<R extends MutableShortCollection>
RSynchronizedStack. collectShort(ShortFunction<? super T> shortFunction, R target)MutableShortStackUnmodifiableStack. 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> MutableShortListArrayIterate. collectShort(T[] objectArray, ShortFunction<? super T> shortFunction)static <T, R extends MutableShortCollection>
RArrayIterate. collectShort(T[] objectArray, ShortFunction<? super T> shortFunction, R target)static <T> MutableShortListArrayListIterate. 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> MutableShortCollectionIterate. collectShort(Iterable<T> iterable, ShortFunction<? super T> shortFunction)Returns a newshortcollection 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 specifiedtargetcollection.static <T> MutableShortListListIterate. 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> MutableShortCollectionMapIterate. 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
Methods in org.eclipse.collections.impl.utility.internal with parameters of type ShortFunction Modifier and Type Method Description static <T> MutableShortCollectionIterableIterate. 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> MutableShortCollectionIteratorIterate. 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> MutableShortListRandomAccessListIterate. collectShort(List<T> list, ShortFunction<? super T> shortFunction)static <T, R extends MutableShortCollection>
RRandomAccessListIterate. collectShort(List<T> list, ShortFunction<? super T> shortFunction, R target)