Uses of Interface
org.eclipse.collections.api.collection.primitive.MutableShortCollection
Package
Description
This package contains interfaces for Eclipse Collections API.
This package contains API for Primitive Bags with Mutable and Immutable variants.
This package contains mutable and immutable primitive collection API.
This package contains mutable and immutable primitive list API.
This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
This package contains API for mutable and immutable primitive sets.
This package contains implementations for Eclipse Collections API.
This package contains implementations of the mutable primitive bag interfaces.
This package contains implementations of the
MutableBiMap
interface.This package contains implementations of primitive procedures.
This package contains implementations of the
MutableCollection
interface.This package contains implementations of the mutable primitive collection interfaces.
This package contains implementations of the
MutableList
interface.This package contains implementations of the mutable primitive list interfaces.
This package contains implementations of the
MutableMap
interface.This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the
MutableSortedMap
interface.This package contains implementations of the mutable primitive set interfaces.
This package contains implementations of the
MutableStack
interface.This package contains implementations of the mutable primitive stack interfaces.
This package contains static utilities that provide iteration pattern implementations which work with JCF collections.
This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections.
-
Uses of MutableShortCollection in org.eclipse.collections.api
Modifier and TypeMethodDescriptiondefault <R extends MutableShortCollection>
RBooleanIterable.collectShort
(BooleanToShortFunction function, R target) Returns the targetMutableShortCollection
with the results of applying the specified function on each element of the source collection.default <R extends MutableShortCollection>
RByteIterable.collectShort
(ByteToShortFunction function, R target) Returns the targetMutableShortCollection
with the results of applying the specified function on each element of the source collection.default <R extends MutableShortCollection>
RCharIterable.collectShort
(CharToShortFunction function, R target) Returns the targetMutableShortCollection
with the results of applying the specified function on each element of the source collection.default <R extends MutableShortCollection>
RDoubleIterable.collectShort
(DoubleToShortFunction function, R target) Returns the targetMutableShortCollection
with the results of applying the specified function on each element of the source collection.default <R extends MutableShortCollection>
RFloatIterable.collectShort
(FloatToShortFunction function, R target) Returns the targetMutableShortCollection
with the results of applying the specified function on each element of the source collection.default <R extends MutableShortCollection>
RIntIterable.collectShort
(IntToShortFunction function, R target) Returns the targetMutableShortCollection
with the results of applying the specified function on each element of the source collection.default <R extends MutableShortCollection>
RLongIterable.collectShort
(LongToShortFunction function, R target) Returns the targetMutableShortCollection
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.default <R extends MutableShortCollection>
RShortIterable.collectShort
(ShortToShortFunction function, R target) Returns the targetMutableShortCollection
with the results of applying the specified function on each element of the source collection.default <R extends MutableShortCollection>
RRichIterable.flatCollectShort
(Function<? super T, ? extends ShortIterable> function, R target) Same as flatCollect, only the results are collected into the target collection.default <R extends MutableShortCollection>
RShortIterable.reject
(ShortPredicate predicate, R target) Same asShortIterable.reject(ShortPredicate)
, only the results are added to the target MutableShortCollection.default <R extends MutableShortCollection>
RShortIterable.select
(ShortPredicate predicate, R target) Same asShortIterable.select(ShortPredicate)
, only the results are added to the target MutableShortCollection. -
Uses of MutableShortCollection in org.eclipse.collections.api.bag.primitive
Modifier and TypeInterfaceDescriptioninterface
This file was automatically generated from template file mutablePrimitiveBag.stg. -
Uses of MutableShortCollection in org.eclipse.collections.api.collection
Modifier and TypeMethodDescriptiondefault 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 MutableShortCollection in org.eclipse.collections.api.collection.primitive
Modifier and TypeMethodDescriptionMutableShortCollection.asSynchronized()
MutableShortCollection.asUnmodifiable()
default MutableShortCollection
MutableShortCollection.newEmpty()
Creates a new empty mutable version of the same collection type.MutableShortCollection.reject
(ShortPredicate predicate) MutableShortCollection.select
(ShortPredicate predicate) default MutableShortCollection
MutableShortCollection.tap
(ShortProcedure procedure) MutableShortCollection.with
(short element) MutableShortCollection.withAll
(ShortIterable elements) MutableShortCollection.without
(short element) MutableShortCollection.withoutAll
(ShortIterable elements) -
Uses of MutableShortCollection in org.eclipse.collections.api.list.primitive
Modifier and TypeInterfaceDescriptioninterface
This file was automatically generated from template file mutablePrimitiveList.stg. -
Uses of MutableShortCollection in org.eclipse.collections.api.map.primitive
Modifier and TypeMethodDescriptionMutableObjectShortMap.reject
(ShortPredicate predicate) MutableObjectShortMap.select
(ShortPredicate predicate) ObjectShortMap.values()
Returns the values in this map as a separate collection.ShortValuesMap.values()
Returns the values in this map as a separate collection. -
Uses of MutableShortCollection in org.eclipse.collections.api.ordered.primitive
Modifier and TypeMethodDescriptiondefault <R extends MutableShortCollection>
ROrderedShortIterable.rejectWithIndex
(ShortIntPredicate predicate, R target) Returns a new MutableShortCollection excluding all elements with corresponding indexes matching the specified predicate.default <R extends MutableShortCollection>
ROrderedShortIterable.selectWithIndex
(ShortIntPredicate predicate, R target) Returns a new MutableShortCollection including all elements with corresponding indexes matching the specified predicate. -
Uses of MutableShortCollection in org.eclipse.collections.api.set.primitive
Modifier and TypeInterfaceDescriptioninterface
This file was automatically generated from template file mutablePrimitiveSet.stg. -
Uses of MutableShortCollection in org.eclipse.collections.impl
Modifier and TypeMethodDescription<R extends MutableShortCollection>
RUnmodifiableRichIterable.collectShort
(ShortFunction<? super T> shortFunction, R target) <R extends MutableShortCollection>
RUnmodifiableRichIterable.flatCollectShort
(Function<? super T, ? extends ShortIterable> function, R target) -
Uses of MutableShortCollection in org.eclipse.collections.impl.bag
Modifier and TypeMethodDescription<R extends MutableShortCollection>
RAbstractBag.collectShort
(ShortFunction<? super T> shortFunction, R target) <R extends MutableShortCollection>
RAbstractBag.flatCollectShort
(Function<? super T, ? extends ShortIterable> function, R target) -
Uses of MutableShortCollection in org.eclipse.collections.impl.bag.mutable.primitive
Modifier and TypeClassDescriptionclass
ShortHashBag is similar toHashBag
, and is memory-optimized for short primitives.class
A synchronized view of aMutableShortBag
.class
This file was automatically generated from template file unmodifiablePrimitiveBag.stg. -
Uses of MutableShortCollection in org.eclipse.collections.impl.bimap
Modifier and TypeMethodDescription<R extends MutableShortCollection>
RAbstractBiMap.collectShort
(ShortFunction<? super V> shortFunction, R target) <R extends MutableShortCollection>
RAbstractBiMap.flatCollectShort
(Function<? super V, ? extends ShortIterable> function, R target) -
Uses of MutableShortCollection in org.eclipse.collections.impl.bimap.mutable
Modifier and TypeMethodDescription<R extends MutableShortCollection>
RUnmodifiableBiMap.collectShort
(ShortFunction<? super V> shortFunction, R target) <R extends MutableShortCollection>
RUnmodifiableBiMap.flatCollectShort
(Function<? super V, ? extends ShortIterable> function, R target) -
Uses of MutableShortCollection in org.eclipse.collections.impl.block.procedure.primitive
ModifierConstructorDescriptionCollectShortProcedure
(ShortFunction<? super T> shortFunction, MutableShortCollection targetCollection) -
Uses of MutableShortCollection in org.eclipse.collections.impl.collection
Modifier and TypeMethodDescription<R extends MutableShortCollection>
RAbstractSynchronizedRichIterable.collectShort
(ShortFunction<? super T> shortFunction, R target) <R extends MutableShortCollection>
RAbstractSynchronizedRichIterable.flatCollectShort
(Function<? super T, ? extends ShortIterable> function, R target) -
Uses of MutableShortCollection in org.eclipse.collections.impl.collection.mutable
Modifier and TypeMethodDescription<R extends MutableShortCollection>
RAbstractCollectionAdapter.collectShort
(ShortFunction<? super T> shortFunction, R target) <R extends MutableShortCollection>
RAbstractMultiReaderMutableCollection.collectShort
(ShortFunction<? super T> shortFunction, R target) <R extends MutableShortCollection>
RAbstractUnmodifiableMutableCollection.collectShort
(ShortFunction<? super T> shortFunction, R target) <R extends MutableShortCollection>
RAbstractMultiReaderMutableCollection.flatCollectShort
(Function<? super T, ? extends ShortIterable> function, R target) <R extends MutableShortCollection>
RAbstractUnmodifiableMutableCollection.flatCollectShort
(Function<? super T, ? extends ShortIterable> function, R target) Modifier and TypeMethodDescriptionAbstractSynchronizedMutableCollection.collectShort
(ShortFunction<? super T> shortFunction) AbstractUnmodifiableMutableCollection.collectShort
(ShortFunction<? super T> shortFunction) -
Uses of MutableShortCollection in org.eclipse.collections.impl.collection.mutable.primitive
Modifier and TypeClassDescriptionclass
This file was automatically generated from template file abstractSynchronizedPrimitiveCollection.stg.class
This file was automatically generated from template file abstractUnmodifiablePrimitiveCollection.stg.class
This file was automatically generated from template file synchronizedPrimitiveCollection.stg.class
This file was automatically generated from template file unmodifiablePrimitiveCollection.stg.Modifier and TypeMethodDescriptionAbstractSynchronizedShortCollection.asSynchronized()
AbstractUnmodifiableShortCollection.asSynchronized()
AbstractSynchronizedShortCollection.asUnmodifiable()
AbstractUnmodifiableShortCollection.asUnmodifiable()
SynchronizedShortCollection.newEmpty()
UnmodifiableShortCollection.newEmpty()
AbstractSynchronizedShortCollection.reject
(ShortPredicate predicate) AbstractUnmodifiableShortCollection.reject
(ShortPredicate predicate) AbstractSynchronizedShortCollection.select
(ShortPredicate predicate) AbstractUnmodifiableShortCollection.select
(ShortPredicate predicate) AbstractSynchronizedShortCollection.with
(short element) AbstractUnmodifiableShortCollection.with
(short element) AbstractSynchronizedShortCollection.withAll
(ShortIterable elements) AbstractUnmodifiableShortCollection.withAll
(ShortIterable elements) AbstractSynchronizedShortCollection.without
(short element) AbstractUnmodifiableShortCollection.without
(short element) AbstractSynchronizedShortCollection.withoutAll
(ShortIterable elements) AbstractUnmodifiableShortCollection.withoutAll
(ShortIterable elements) Modifier and TypeMethodDescriptionstatic SynchronizedShortCollection
SynchronizedShortCollection.of
(MutableShortCollection collection) This method will take a MutableShortCollection and wrap it directly in a SynchronizedShortCollection.static SynchronizedShortCollection
SynchronizedShortCollection.of
(MutableShortCollection collection, Object lock) This method will take a MutableShortCollection and wrap it directly in a SynchronizedShortCollection.static UnmodifiableShortCollection
UnmodifiableShortCollection.of
(MutableShortCollection collection) This method will take a MutableShortCollection and wrap it directly in a UnmodifiableShortCollection. -
Uses of MutableShortCollection in org.eclipse.collections.impl.collector
Modifier and TypeMethodDescriptionstatic <T,
R extends MutableShortCollection>
Collector<T,?, R> Collectors2.collectShort
(ShortFunction<? super T> function, Supplier<R> supplier) Returns a new MutableShortCollection with the results of applying the specified ShortFunction on each element of the source. -
Uses of MutableShortCollection in org.eclipse.collections.impl.list.mutable
Modifier and TypeMethodDescription<R extends MutableShortCollection>
RFastList.collectShort
(ShortFunction<? super T> shortFunction, R target) <R extends MutableShortCollection>
RFastList.flatCollectShort
(Function<? super T, ? extends ShortIterable> function, R target) -
Uses of MutableShortCollection in org.eclipse.collections.impl.list.mutable.primitive
Modifier and TypeClassDescriptionclass
ShortArrayList is similar to FastList, and is memory-optimized for short primitives.class
A synchronized view of aMutableShortList
.class
This file was automatically generated from template file unmodifiablePrimitiveList.stg.Modifier and TypeMethodDescription<R extends MutableShortCollection>
RShortArrayList.reject
(ShortPredicate predicate, R target) <R extends MutableShortCollection>
RSynchronizedShortList.rejectWithIndex
(ShortIntPredicate predicate, R target) Returns a new MutableShortCollection excluding all elements with corresponding indexes matching the specified predicate.<R extends MutableShortCollection>
RUnmodifiableShortList.rejectWithIndex
(ShortIntPredicate predicate, R target) Returns a new MutableShortCollection excluding all elements with corresponding indexes matching the specified predicate.<R extends MutableShortCollection>
RShortArrayList.select
(ShortPredicate predicate, R target) <R extends MutableShortCollection>
RSynchronizedShortList.selectWithIndex
(ShortIntPredicate predicate, R target) Returns a new MutableShortCollection including all elements with corresponding indexes matching the specified predicate.<R extends MutableShortCollection>
RUnmodifiableShortList.selectWithIndex
(ShortIntPredicate predicate, R target) Returns a new MutableShortCollection including all elements with corresponding indexes matching the specified predicate. -
Uses of MutableShortCollection in org.eclipse.collections.impl.map.mutable
Modifier and TypeMethodDescription<R extends MutableShortCollection>
RUnmodifiableMutableMap.collectShort
(ShortFunction<? super V> shortFunction, R target) <R extends MutableShortCollection>
RUnmodifiableMutableMap.flatCollectShort
(Function<? super V, ? extends ShortIterable> function, R target) -
Uses of MutableShortCollection in org.eclipse.collections.impl.map.mutable.primitive
Modifier and TypeClassDescriptionclass
This file was automatically generated from template file abstractMutablePrimitiveKeySet.stg.Modifier and TypeMethodDescription<R extends MutableShortCollection>
RSynchronizedByteObjectMap.collectShort
(ShortFunction<? super V> shortFunction, R target) <R extends MutableShortCollection>
RSynchronizedCharObjectMap.collectShort
(ShortFunction<? super V> shortFunction, R target) <R extends MutableShortCollection>
RSynchronizedDoubleObjectMap.collectShort
(ShortFunction<? super V> shortFunction, R target) <R extends MutableShortCollection>
RSynchronizedFloatObjectMap.collectShort
(ShortFunction<? super V> shortFunction, R target) <R extends MutableShortCollection>
RSynchronizedIntObjectMap.collectShort
(ShortFunction<? super V> shortFunction, R target) <R extends MutableShortCollection>
RSynchronizedLongObjectMap.collectShort
(ShortFunction<? super V> shortFunction, R target) <R extends MutableShortCollection>
RSynchronizedShortObjectMap.collectShort
(ShortFunction<? super V> shortFunction, R target) <R extends MutableShortCollection>
RUnmodifiableByteObjectMap.collectShort
(ShortFunction<? super V> shortFunction, R target) <R extends MutableShortCollection>
RUnmodifiableCharObjectMap.collectShort
(ShortFunction<? super V> shortFunction, R target) <R extends MutableShortCollection>
RUnmodifiableDoubleObjectMap.collectShort
(ShortFunction<? super V> shortFunction, R target) <R extends MutableShortCollection>
RUnmodifiableFloatObjectMap.collectShort
(ShortFunction<? super V> shortFunction, R target) <R extends MutableShortCollection>
RUnmodifiableIntObjectMap.collectShort
(ShortFunction<? super V> shortFunction, R target) <R extends MutableShortCollection>
RUnmodifiableLongObjectMap.collectShort
(ShortFunction<? super V> shortFunction, R target) <R extends MutableShortCollection>
RUnmodifiableShortObjectMap.collectShort
(ShortFunction<? super V> shortFunction, R target) <R extends MutableShortCollection>
RSynchronizedByteObjectMap.flatCollectShort
(Function<? super V, ? extends ShortIterable> function, R target) <R extends MutableShortCollection>
RSynchronizedCharObjectMap.flatCollectShort
(Function<? super V, ? extends ShortIterable> function, R target) <R extends MutableShortCollection>
RSynchronizedDoubleObjectMap.flatCollectShort
(Function<? super V, ? extends ShortIterable> function, R target) <R extends MutableShortCollection>
RSynchronizedFloatObjectMap.flatCollectShort
(Function<? super V, ? extends ShortIterable> function, R target) <R extends MutableShortCollection>
RSynchronizedIntObjectMap.flatCollectShort
(Function<? super V, ? extends ShortIterable> function, R target) <R extends MutableShortCollection>
RSynchronizedLongObjectMap.flatCollectShort
(Function<? super V, ? extends ShortIterable> function, R target) <R extends MutableShortCollection>
RSynchronizedShortObjectMap.flatCollectShort
(Function<? super V, ? extends ShortIterable> function, R target) Modifier and TypeMethodDescriptionObjectShortHashMap.reject
(ShortPredicate predicate) ObjectShortHashMapWithHashingStrategy.reject
(ShortPredicate predicate) SynchronizedObjectShortMap.reject
(ShortPredicate predicate) UnmodifiableObjectShortMap.reject
(ShortPredicate predicate) ObjectShortHashMap.select
(ShortPredicate predicate) ObjectShortHashMapWithHashingStrategy.select
(ShortPredicate predicate) SynchronizedObjectShortMap.select
(ShortPredicate predicate) UnmodifiableObjectShortMap.select
(ShortPredicate predicate) ByteShortHashMap.values()
CharShortHashMap.values()
DoubleShortHashMap.values()
FloatShortHashMap.values()
IntShortHashMap.values()
LongShortHashMap.values()
ObjectShortHashMap.values()
ObjectShortHashMapWithHashingStrategy.values()
ShortShortHashMap.values()
SynchronizedByteShortMap.values()
SynchronizedCharShortMap.values()
SynchronizedDoubleShortMap.values()
SynchronizedFloatShortMap.values()
SynchronizedIntShortMap.values()
SynchronizedLongShortMap.values()
SynchronizedObjectShortMap.values()
SynchronizedShortShortMap.values()
UnmodifiableByteShortMap.values()
UnmodifiableCharShortMap.values()
UnmodifiableDoubleShortMap.values()
UnmodifiableFloatShortMap.values()
UnmodifiableIntShortMap.values()
UnmodifiableLongShortMap.values()
UnmodifiableObjectShortMap.values()
UnmodifiableShortShortMap.values()
-
Uses of MutableShortCollection in org.eclipse.collections.impl.map.ordered.mutable
Modifier and TypeMethodDescription<R extends MutableShortCollection>
RUnmodifiableMutableOrderedMap.collectShort
(ShortFunction<? super V> shortFunction, R target) <R extends MutableShortCollection>
RUnmodifiableMutableOrderedMap.flatCollectShort
(Function<? super V, ? extends ShortIterable> function, R target) -
Uses of MutableShortCollection in org.eclipse.collections.impl.map.sorted.mutable
Modifier and TypeMethodDescription<R extends MutableShortCollection>
RUnmodifiableTreeMap.collectShort
(ShortFunction<? super V> shortFunction, R target) <R extends MutableShortCollection>
RUnmodifiableTreeMap.flatCollectShort
(Function<? super V, ? extends ShortIterable> function, R target) -
Uses of MutableShortCollection in org.eclipse.collections.impl.set.mutable.primitive
Modifier and TypeClassDescriptionclass
This file was automatically generated from template file primitiveHashSet.stg.class
A synchronized view of aMutableShortSet
.class
This file was automatically generated from template file unmodifiablePrimitiveSet.stg.Modifier and TypeMethodDescription<R extends MutableShortCollection>
RShortHashSet.reject
(ShortPredicate predicate, R target) <R extends MutableShortCollection>
RShortHashSet.select
(ShortPredicate predicate, R target) -
Uses of MutableShortCollection in org.eclipse.collections.impl.stack.mutable
Modifier and TypeMethodDescription<R extends MutableShortCollection>
RArrayStack.collectShort
(ShortFunction<? super T> shortFunction, R target) <R extends MutableShortCollection>
RSynchronizedStack.collectShort
(ShortFunction<? super T> shortFunction, R target) <R extends MutableShortCollection>
RUnmodifiableStack.collectShort
(ShortFunction<? super T> shortFunction, R target) <R extends MutableShortCollection>
RArrayStack.flatCollectShort
(Function<? super T, ? extends ShortIterable> function, R target) <R extends MutableShortCollection>
RSynchronizedStack.flatCollectShort
(Function<? super T, ? extends ShortIterable> function, R target) <R extends MutableShortCollection>
RUnmodifiableStack.flatCollectShort
(Function<? super T, ? extends ShortIterable> function, R target) -
Uses of MutableShortCollection in org.eclipse.collections.impl.stack.mutable.primitive
Modifier and TypeMethodDescription<R extends MutableShortCollection>
RSynchronizedShortStack.rejectWithIndex
(ShortIntPredicate predicate, R target) Returns a new MutableShortCollection excluding all elements with corresponding indexes matching the specified predicate.<R extends MutableShortCollection>
RSynchronizedShortStack.selectWithIndex
(ShortIntPredicate predicate, R target) Returns a new MutableShortCollection including all elements with corresponding indexes matching the specified predicate. -
Uses of MutableShortCollection in org.eclipse.collections.impl.utility
Modifier and TypeMethodDescriptionstatic <T,
R extends MutableShortCollection>
RArrayIterate.collectShort
(T[] objectArray, ShortFunction<? super T> shortFunction, R target) static <T,
R extends MutableShortCollection>
RArrayListIterate.collectShort
(ArrayList<T> list, ShortFunction<? super T> shortFunction, R target) static <T,
R extends MutableShortCollection>
RIterate.collectShort
(Iterable<T> iterable, ShortFunction<? super T> shortFunction, R target) Same asIterate.collectShort(Iterable, ShortFunction)
, except that the results are gathered into the specifiedtarget
collection.static <T,
R extends MutableShortCollection>
RListIterate.collectShort
(List<T> list, ShortFunction<? super T> shortFunction, R target) static <K,
V, R extends MutableShortCollection>
RMapIterate.collectShort
(Map<K, V> map, ShortFunction<? super V> shortFunction, R target) Modifier and TypeMethodDescriptionstatic <T> MutableShortCollection
Iterate.collectShort
(Iterable<T> iterable, ShortFunction<? super T> shortFunction) Returns a newshort
collection with the results of applying the specified shortFunction for each element of the iterable.static <K,
V> MutableShortCollection MapIterate.collectShort
(Map<K, V> map, ShortFunction<? super V> shortFunction) -
Uses of MutableShortCollection in org.eclipse.collections.impl.utility.internal
Modifier and TypeMethodDescriptionstatic <T,
R extends MutableShortCollection>
RIterableIterate.collectShort
(Iterable<T> iterable, ShortFunction<? super T> shortFunction, R target) static <T,
R extends MutableShortCollection>
RIteratorIterate.collectShort
(Iterator<T> iterator, ShortFunction<? super T> shortFunction, R target) static <T,
R extends MutableShortCollection>
RRandomAccessListIterate.collectShort
(List<T> list, ShortFunction<? super T> shortFunction, R target) Modifier and TypeMethodDescriptionstatic <T> MutableShortCollection
IterableIterate.collectShort
(Iterable<T> iterable, ShortFunction<? super T> shortFunction) static <T> MutableShortCollection
IteratorIterate.collectShort
(Iterator<T> iterator, ShortFunction<? super T> shortFunction) -
Uses of MutableShortCollection in org.eclipse.collections.impl.utility.internal.primitive
Modifier and TypeMethodDescriptionstatic <R extends MutableShortCollection>
RShortIterableIterate.reject
(ShortIterable iterable, ShortPredicate predicate, R targetCollection) static <R extends MutableShortCollection>
RShortIteratorIterate.reject
(ShortIterator iterator, ShortPredicate predicate, R targetCollection) static <R extends MutableShortCollection>
RShortIterableIterate.select
(ShortIterable iterable, ShortPredicate predicate, R targetCollection) static <R extends MutableShortCollection>
RShortIteratorIterate.select
(ShortIterator iterator, ShortPredicate predicate, R targetCollection)