Uses of Interface
org.eclipse.collections.api.list.primitive.MutableShortList
-
Packages that use MutableShortList Package Description org.eclipse.collections.api This package contains interfaces for Eclipse Collections API.org.eclipse.collections.api.bag.sorted This package contains interfaces for SortedBag API.org.eclipse.collections.api.factory.list.primitive This package contains factory API for creating immutable primitive list instances.org.eclipse.collections.api.list This package contains interfaces for list API which enhance the performance and functionality ofList
.org.eclipse.collections.api.list.primitive This package contains mutable and immutable primitive list API.org.eclipse.collections.api.map This package contains interfaces for map API which enhance the performance and functionality ofMap
org.eclipse.collections.api.map.sorted This package contains mutable and immutable sorted map interfaces.org.eclipse.collections.api.set.sorted This package contains interfaces for sorted set API.org.eclipse.collections.impl.bag.immutable.primitive This package contains implementations of the immutable primitive bag interfaces.org.eclipse.collections.impl.bag.sorted.mutable This package contains implementations ofMutableSortedBag
.org.eclipse.collections.impl.collection.mutable.primitive This package contains implementations of the mutable primitive collection interfaces.org.eclipse.collections.impl.lazy.primitive This package contains implementations of the lazy primitive iterator interfaces.org.eclipse.collections.impl.list.immutable.primitive This package contains implementations of immutable primitive list interfaces and immutable primitive list factory interfaces.org.eclipse.collections.impl.list.mutable This package contains implementations of theMutableList
interface.org.eclipse.collections.impl.list.mutable.primitive This package contains implementations of the mutable primitive list interfaces.org.eclipse.collections.impl.map.immutable.primitive This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.mutable.primitive This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.ordered.mutable org.eclipse.collections.impl.map.sorted.mutable This package contains implementations of theMutableSortedMap
interface.org.eclipse.collections.impl.primitive org.eclipse.collections.impl.set.immutable.primitive This package contains implementations of the immutable primitive set interfaces.org.eclipse.collections.impl.set.sorted.mutable This package contains implementations ofMutableSortedSet
.org.eclipse.collections.impl.stack.immutable.primitive This package contains implementations of the immutable primitive stack interfaces.org.eclipse.collections.impl.stack.mutable.primitive This package contains implementations of the mutable primitive stack interfaces.org.eclipse.collections.impl.stack.primitive 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 MutableShortList in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return MutableShortList Modifier and Type Method Description MutableShortList
ShortIterable. toList()
Converts the ShortIterable to a new MutableShortList.MutableShortList
ShortIterable. toSortedList()
default MutableShortList
ShortIterable. toSortedList(ShortComparator comparator)
Converts the collection to a MutableShortList implementation sorted using the provided comparator.default <T> MutableShortList
ShortIterable. toSortedListBy(ShortToObjectFunction<T> function)
Converts the collection to a MutableShortListImplementation sorted based on the natural order of the key returned byfunction
.default <T> MutableShortList
ShortIterable. toSortedListBy(ShortToObjectFunction<T> function, java.util.Comparator<? super T> comparator)
Converts the collection to a MutableShortList implementation, which is sorted based on the key returned byfunction
using the providedcomparator
. -
Uses of MutableShortList in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted that return MutableShortList Modifier and Type Method Description MutableShortList
MutableSortedBag. collectShort(ShortFunction<? super T> shortFunction)
-
Uses of MutableShortList in org.eclipse.collections.api.factory.list.primitive
Methods in org.eclipse.collections.api.factory.list.primitive that return MutableShortList Modifier and Type Method Description MutableShortList
MutableShortListFactory. empty()
MutableShortList
MutableShortListFactory. of()
Same asMutableShortListFactory.empty()
.MutableShortList
MutableShortListFactory. of(short... items)
MutableShortList
MutableShortListFactory. ofAll(java.lang.Iterable<java.lang.Short> iterable)
MutableShortList
MutableShortListFactory. ofAll(ShortIterable items)
MutableShortList
MutableShortListFactory. with()
Same asMutableShortListFactory.empty()
.MutableShortList
MutableShortListFactory. with(short... items)
Creates a new list using the passeditems
argument as the backing store.MutableShortList
MutableShortListFactory. withAll(java.lang.Iterable<java.lang.Short> iterable)
MutableShortList
MutableShortListFactory. withAll(ShortIterable items)
default MutableShortList
MutableShortListFactory. withInitialCapacity(int capacity)
Same asMutableShortListFactory.empty()
.default MutableShortList
MutableShortListFactory. wrapCopy(short... array)
Creates a new list by first copying the array passed in. -
Uses of MutableShortList in org.eclipse.collections.api.list
Methods in org.eclipse.collections.api.list that return MutableShortList Modifier and Type Method Description default MutableShortList
MutableList. collectShort(ShortFunction<? super T> shortFunction)
-
Uses of MutableShortList in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive that return MutableShortList Modifier and Type Method Description MutableShortList
MutableShortList. asSynchronized()
MutableShortList
MutableShortList. asUnmodifiable()
MutableShortList
MutableShortList. distinct()
default MutableShortList
MutableShortList. newEmpty()
Creates a new empty mutable version of the same List type.MutableShortList
MutableShortList. reject(ShortPredicate predicate)
default MutableShortList
MutableShortList. rejectWithIndex(ShortIntPredicate predicate)
Returns a new MutableShortList excluding all elements with corresponding indexes matching the specified predicate.MutableShortList
MutableShortList. reverseThis()
MutableShortList
MutableShortList. select(ShortPredicate predicate)
default MutableShortList
MutableShortList. selectWithIndex(ShortIntPredicate predicate)
Returns a new MutableShortList including all elements with corresponding indexes matching the specified predicate.default MutableShortList
MutableShortList. shuffleThis()
Randomly permutes this list mutating its contents and returns the same list (this).default MutableShortList
MutableShortList. shuffleThis(java.util.Random rnd)
Randomly permutes this list mutating its contents and returns the same list (this).MutableShortList
MutableShortList. sortThis()
Sorts this list mutating its contents and returns the same mutable list (this).default MutableShortList
MutableShortList. sortThis(ShortComparator comparator)
Sorts the internal data structure of this list and returns the list itself as a convenience.default <T> MutableShortList
MutableShortList. sortThisBy(ShortToObjectFunction<T> function)
Sorts the internal data structure of this list based on the natural order of the key returned byfunction
.default <T> MutableShortList
MutableShortList. sortThisBy(ShortToObjectFunction<T> function, java.util.Comparator<? super T> comparator)
Sorts the internal data structure of this list based on the key returned byfunction
using the providedcomparator
.MutableShortList
MutableShortList. subList(int fromIndex, int toIndex)
default MutableShortList
MutableShortList. tap(ShortProcedure procedure)
MutableShortList
MutableShortList. toReversed()
MutableShortList
MutableShortList. with(short element)
MutableShortList
MutableShortList. withAll(ShortIterable elements)
MutableShortList
MutableShortList. without(short element)
MutableShortList
MutableShortList. withoutAll(ShortIterable elements)
-
Uses of MutableShortList in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return MutableShortList Modifier and Type Method Description MutableShortList
MutableOrderedMap. collectShort(ShortFunction<? super V> shortFunction)
-
Uses of MutableShortList in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted that return MutableShortList Modifier and Type Method Description MutableShortList
MutableSortedMap. collectShort(ShortFunction<? super V> shortFunction)
-
Uses of MutableShortList in org.eclipse.collections.api.set.sorted
Methods in org.eclipse.collections.api.set.sorted that return MutableShortList Modifier and Type Method Description MutableShortList
MutableSortedSet. collectShort(ShortFunction<? super T> shortFunction)
-
Uses of MutableShortList in org.eclipse.collections.impl.bag.immutable.primitive
Methods in org.eclipse.collections.impl.bag.immutable.primitive that return MutableShortList Modifier and Type Method Description MutableShortList
ImmutableShortEmptyBag. toList()
MutableShortList
ImmutableShortHashBag. toList()
MutableShortList
ImmutableShortSingletonBag. toList()
MutableShortList
ImmutableShortEmptyBag. toSortedList()
MutableShortList
ImmutableShortHashBag. toSortedList()
MutableShortList
ImmutableShortSingletonBag. toSortedList()
-
Uses of MutableShortList in org.eclipse.collections.impl.bag.sorted.mutable
Methods in org.eclipse.collections.impl.bag.sorted.mutable that return MutableShortList 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 MutableShortList in org.eclipse.collections.impl.collection.mutable.primitive
Methods in org.eclipse.collections.impl.collection.mutable.primitive that return MutableShortList Modifier and Type Method Description MutableShortList
AbstractSynchronizedShortCollection. toList()
MutableShortList
AbstractUnmodifiableShortCollection. toList()
MutableShortList
AbstractSynchronizedShortCollection. toSortedList()
MutableShortList
AbstractUnmodifiableShortCollection. toSortedList()
-
Uses of MutableShortList in org.eclipse.collections.impl.lazy.primitive
Methods in org.eclipse.collections.impl.lazy.primitive that return MutableShortList Modifier and Type Method Description MutableShortList
AbstractLazyShortIterable. toList()
MutableShortList
CollectShortIterable. toList()
MutableShortList
LazyShortIterableAdapter. toList()
MutableShortList
ReverseShortIterable. toList()
MutableShortList
SelectShortIterable. toList()
MutableShortList
AbstractLazyShortIterable. toSortedList()
MutableShortList
LazyShortIterableAdapter. toSortedList()
-
Uses of MutableShortList in org.eclipse.collections.impl.list.immutable.primitive
Methods in org.eclipse.collections.impl.list.immutable.primitive that return MutableShortList Modifier and Type Method Description MutableShortList
ImmutableShortArrayList. toList()
MutableShortList
ImmutableShortEmptyList. toList()
MutableShortList
ImmutableShortSingletonList. toList()
MutableShortList
ImmutableShortArrayList. toSortedList()
MutableShortList
ImmutableShortEmptyList. toSortedList()
MutableShortList
ImmutableShortSingletonList. toSortedList()
-
Uses of MutableShortList in org.eclipse.collections.impl.list.mutable
Methods in org.eclipse.collections.impl.list.mutable that return MutableShortList Modifier and Type Method Description 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)
-
Uses of MutableShortList in org.eclipse.collections.impl.list.mutable.primitive
Classes in org.eclipse.collections.impl.list.mutable.primitive that implement MutableShortList Modifier and Type Class Description class
ShortArrayList
ShortArrayList is similar to FastList, and is memory-optimized for short primitives.class
SynchronizedShortList
A synchronized view of aMutableShortList
.class
UnmodifiableShortList
This file was automatically generated from template file unmodifiablePrimitiveList.stg.Methods in org.eclipse.collections.impl.list.mutable.primitive that return MutableShortList Modifier and Type Method Description MutableShortList
ShortArrayList. asSynchronized()
MutableShortList
SynchronizedShortList. asSynchronized()
MutableShortList
UnmodifiableShortList. asSynchronized()
MutableShortList
ShortArrayList. asUnmodifiable()
MutableShortList
SynchronizedShortList. asUnmodifiable()
MutableShortList
UnmodifiableShortList. asUnmodifiable()
MutableShortList
ShortArrayList. distinct()
MutableShortList
SynchronizedShortList. distinct()
MutableShortList
UnmodifiableShortList. distinct()
MutableShortList
MutableShortListFactoryImpl. empty()
private MutableShortList
SynchronizedShortList. getMutableShortList()
private MutableShortList
UnmodifiableShortList. getMutableShortList()
MutableShortList
SynchronizedShortList. newEmpty()
MutableShortList
UnmodifiableShortList. newEmpty()
MutableShortList
MutableShortListFactoryImpl. of()
MutableShortList
MutableShortListFactoryImpl. of(short... items)
MutableShortList
MutableShortListFactoryImpl. ofAll(java.lang.Iterable<java.lang.Short> iterable)
MutableShortList
MutableShortListFactoryImpl. ofAll(ShortIterable items)
MutableShortList
SynchronizedShortList. reject(ShortPredicate predicate)
MutableShortList
UnmodifiableShortList. reject(ShortPredicate predicate)
MutableShortList
SynchronizedShortList. rejectWithIndex(ShortIntPredicate predicate)
Returns a new MutableShortList excluding all elements with corresponding indexes matching the specified predicate.MutableShortList
UnmodifiableShortList. rejectWithIndex(ShortIntPredicate predicate)
Returns a new MutableShortList excluding all elements with corresponding indexes matching the specified predicate.MutableShortList
SynchronizedShortList. reverseThis()
MutableShortList
UnmodifiableShortList. reverseThis()
MutableShortList
SynchronizedShortList. select(ShortPredicate predicate)
MutableShortList
UnmodifiableShortList. select(ShortPredicate predicate)
MutableShortList
SynchronizedShortList. selectWithIndex(ShortIntPredicate predicate)
Returns a new MutableShortList including all elements with corresponding indexes matching the specified predicate.MutableShortList
UnmodifiableShortList. selectWithIndex(ShortIntPredicate predicate)
Returns a new MutableShortList including all elements with corresponding indexes matching the specified predicate.MutableShortList
SynchronizedShortList. shuffleThis()
MutableShortList
SynchronizedShortList. shuffleThis(java.util.Random rnd)
MutableShortList
UnmodifiableShortList. shuffleThis()
MutableShortList
SynchronizedShortList. sortThis()
MutableShortList
SynchronizedShortList. sortThis(ShortComparator comparator)
MutableShortList
UnmodifiableShortList. sortThis()
<T> MutableShortList
SynchronizedShortList. sortThisBy(ShortToObjectFunction<T> function)
<T> MutableShortList
SynchronizedShortList. sortThisBy(ShortToObjectFunction<T> function, java.util.Comparator<? super T> comparator)
MutableShortList
ShortArrayList. subList(int fromIndex, int toIndex)
MutableShortList
SynchronizedShortList. subList(int fromIndex, int toIndex)
MutableShortList
UnmodifiableShortList. subList(int fromIndex, int toIndex)
MutableShortList
SynchronizedShortList. toReversed()
MutableShortList
UnmodifiableShortList. toReversed()
MutableShortList
MutableShortListFactoryImpl. with()
MutableShortList
MutableShortListFactoryImpl. with(short... items)
Creates a new list using the passeditems
argument as the backing store.MutableShortList
MutableShortListFactoryImpl. withAll(java.lang.Iterable<java.lang.Short> iterable)
MutableShortList
MutableShortListFactoryImpl. withAll(ShortIterable items)
MutableShortList
MutableShortListFactoryImpl. withInitialCapacity(int capacity)
Constructors in org.eclipse.collections.impl.list.mutable.primitive with parameters of type MutableShortList Constructor Description SynchronizedShortList(MutableShortList list)
SynchronizedShortList(MutableShortList list, java.lang.Object newLock)
UnmodifiableShortList(MutableShortList list)
-
Uses of MutableShortList in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive that return MutableShortList Modifier and Type Method Description MutableShortList
ImmutableByteShortEmptyMap. toList()
MutableShortList
ImmutableByteShortHashMap. toList()
MutableShortList
ImmutableByteShortSingletonMap. toList()
MutableShortList
ImmutableCharShortEmptyMap. toList()
MutableShortList
ImmutableCharShortHashMap. toList()
MutableShortList
ImmutableCharShortSingletonMap. toList()
MutableShortList
ImmutableDoubleShortEmptyMap. toList()
MutableShortList
ImmutableDoubleShortHashMap. toList()
MutableShortList
ImmutableDoubleShortSingletonMap. toList()
MutableShortList
ImmutableFloatShortEmptyMap. toList()
MutableShortList
ImmutableFloatShortHashMap. toList()
MutableShortList
ImmutableFloatShortSingletonMap. toList()
MutableShortList
ImmutableIntShortEmptyMap. toList()
MutableShortList
ImmutableIntShortHashMap. toList()
MutableShortList
ImmutableIntShortSingletonMap. toList()
MutableShortList
ImmutableLongShortEmptyMap. toList()
MutableShortList
ImmutableLongShortHashMap. toList()
MutableShortList
ImmutableLongShortSingletonMap. toList()
MutableShortList
ImmutableObjectShortEmptyMap. toList()
MutableShortList
ImmutableObjectShortHashMap. toList()
MutableShortList
ImmutableObjectShortSingletonMap. toList()
MutableShortList
ImmutableShortShortEmptyMap. toList()
MutableShortList
ImmutableShortShortHashMap. toList()
MutableShortList
ImmutableShortShortSingletonMap. toList()
MutableShortList
ImmutableByteShortEmptyMap. toSortedList()
MutableShortList
ImmutableByteShortHashMap. toSortedList()
MutableShortList
ImmutableByteShortSingletonMap. toSortedList()
MutableShortList
ImmutableCharShortEmptyMap. toSortedList()
MutableShortList
ImmutableCharShortHashMap. toSortedList()
MutableShortList
ImmutableCharShortSingletonMap. toSortedList()
MutableShortList
ImmutableDoubleShortEmptyMap. toSortedList()
MutableShortList
ImmutableDoubleShortHashMap. toSortedList()
MutableShortList
ImmutableDoubleShortSingletonMap. toSortedList()
MutableShortList
ImmutableFloatShortEmptyMap. toSortedList()
MutableShortList
ImmutableFloatShortHashMap. toSortedList()
MutableShortList
ImmutableFloatShortSingletonMap. toSortedList()
MutableShortList
ImmutableIntShortEmptyMap. toSortedList()
MutableShortList
ImmutableIntShortHashMap. toSortedList()
MutableShortList
ImmutableIntShortSingletonMap. toSortedList()
MutableShortList
ImmutableLongShortEmptyMap. toSortedList()
MutableShortList
ImmutableLongShortHashMap. toSortedList()
MutableShortList
ImmutableLongShortSingletonMap. toSortedList()
MutableShortList
ImmutableObjectShortEmptyMap. toSortedList()
MutableShortList
ImmutableObjectShortHashMap. toSortedList()
MutableShortList
ImmutableObjectShortSingletonMap. toSortedList()
MutableShortList
ImmutableShortShortEmptyMap. toSortedList()
MutableShortList
ImmutableShortShortHashMap. toSortedList()
MutableShortList
ImmutableShortShortSingletonMap. toSortedList()
-
Uses of MutableShortList in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableShortList Modifier and Type Method Description MutableShortList
AbstractMutableShortKeySet. toList()
MutableShortList
AbstractMutableShortValuesMap.AbstractShortValuesCollection. toList()
MutableShortList
ObjectShortHashMap. toList()
MutableShortList
ObjectShortHashMap.ValuesCollection. toList()
MutableShortList
ObjectShortHashMapWithHashingStrategy. toList()
MutableShortList
ObjectShortHashMapWithHashingStrategy.ValuesCollection. toList()
MutableShortList
ShortBooleanHashMap.KeysView. toList()
MutableShortList
SynchronizedByteShortMap. toList()
MutableShortList
SynchronizedCharShortMap. toList()
MutableShortList
SynchronizedDoubleShortMap. toList()
MutableShortList
SynchronizedFloatShortMap. toList()
MutableShortList
SynchronizedIntShortMap. toList()
MutableShortList
SynchronizedLongShortMap. toList()
MutableShortList
SynchronizedObjectShortMap. toList()
MutableShortList
SynchronizedShortShortMap. toList()
MutableShortList
UnmodifiableByteShortMap. toList()
MutableShortList
UnmodifiableCharShortMap. toList()
MutableShortList
UnmodifiableDoubleShortMap. toList()
MutableShortList
UnmodifiableFloatShortMap. toList()
MutableShortList
UnmodifiableIntShortMap. toList()
MutableShortList
UnmodifiableLongShortMap. toList()
MutableShortList
UnmodifiableObjectShortMap. toList()
MutableShortList
UnmodifiableShortShortMap. toList()
MutableShortList
AbstractMutableShortKeySet. toSortedList()
MutableShortList
AbstractMutableShortValuesMap.AbstractShortValuesCollection. toSortedList()
MutableShortList
ObjectShortHashMap. toSortedList()
MutableShortList
ObjectShortHashMap.ValuesCollection. toSortedList()
MutableShortList
ObjectShortHashMapWithHashingStrategy. toSortedList()
MutableShortList
ObjectShortHashMapWithHashingStrategy.ValuesCollection. toSortedList()
MutableShortList
SynchronizedByteShortMap. toSortedList()
MutableShortList
SynchronizedCharShortMap. toSortedList()
MutableShortList
SynchronizedDoubleShortMap. toSortedList()
MutableShortList
SynchronizedFloatShortMap. toSortedList()
MutableShortList
SynchronizedIntShortMap. toSortedList()
MutableShortList
SynchronizedLongShortMap. toSortedList()
MutableShortList
SynchronizedObjectShortMap. toSortedList()
MutableShortList
SynchronizedShortShortMap. toSortedList()
MutableShortList
UnmodifiableByteShortMap. toSortedList()
MutableShortList
UnmodifiableCharShortMap. toSortedList()
MutableShortList
UnmodifiableDoubleShortMap. toSortedList()
MutableShortList
UnmodifiableFloatShortMap. toSortedList()
MutableShortList
UnmodifiableIntShortMap. toSortedList()
MutableShortList
UnmodifiableLongShortMap. toSortedList()
MutableShortList
UnmodifiableObjectShortMap. toSortedList()
MutableShortList
UnmodifiableShortShortMap. toSortedList()
-
Uses of MutableShortList in org.eclipse.collections.impl.map.ordered.mutable
Methods in org.eclipse.collections.impl.map.ordered.mutable that return MutableShortList Modifier and Type Method Description MutableShortList
OrderedMapAdapter. collectShort(ShortFunction<? super V> shortFunction)
MutableShortList
UnmodifiableMutableOrderedMap. collectShort(ShortFunction<? super V> shortFunction)
-
Uses of MutableShortList in org.eclipse.collections.impl.map.sorted.mutable
Methods in org.eclipse.collections.impl.map.sorted.mutable that return MutableShortList 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)
-
Uses of MutableShortList in org.eclipse.collections.impl.primitive
Methods in org.eclipse.collections.impl.primitive that return MutableShortList Modifier and Type Method Description MutableShortList
AbstractShortIterable. toList()
MutableShortList
SynchronizedShortIterable. toList()
MutableShortList
AbstractShortIterable. toSortedList()
MutableShortList
SynchronizedShortIterable. toSortedList()
-
Uses of MutableShortList in org.eclipse.collections.impl.set.immutable.primitive
Methods in org.eclipse.collections.impl.set.immutable.primitive that return MutableShortList Modifier and Type Method Description MutableShortList
ImmutableShortEmptySet. toList()
MutableShortList
ImmutableShortSingletonSet. toList()
MutableShortList
ImmutableShortEmptySet. toSortedList()
MutableShortList
ImmutableShortSingletonSet. toSortedList()
-
Uses of MutableShortList in org.eclipse.collections.impl.set.sorted.mutable
Methods in org.eclipse.collections.impl.set.sorted.mutable that return MutableShortList 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 MutableShortList in org.eclipse.collections.impl.stack.immutable.primitive
Methods in org.eclipse.collections.impl.stack.immutable.primitive that return MutableShortList Modifier and Type Method Description MutableShortList
ImmutableShortEmptyStack. toList()
MutableShortList
ImmutableShortSingletonStack. toList()
MutableShortList
ImmutableShortArrayStack. toSortedList()
MutableShortList
ImmutableShortEmptyStack. toSortedList()
MutableShortList
ImmutableShortSingletonStack. toSortedList()
-
Uses of MutableShortList in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive that return MutableShortList Modifier and Type Method Description MutableShortList
SynchronizedShortStack. toList()
MutableShortList
UnmodifiableShortStack. toList()
MutableShortList
ShortArrayStack. toSortedList()
MutableShortList
SynchronizedShortStack. toSortedList()
MutableShortList
UnmodifiableShortStack. toSortedList()
-
Uses of MutableShortList in org.eclipse.collections.impl.stack.primitive
Methods in org.eclipse.collections.impl.stack.primitive that return MutableShortList Modifier and Type Method Description MutableShortList
AbstractShortStack. toList()
-
Uses of MutableShortList in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility that return MutableShortList Modifier and Type Method Description static <T> MutableShortList
ArrayIterate. collectShort(T[] objectArray, ShortFunction<? super T> shortFunction)
static <T> MutableShortList
ArrayListIterate. collectShort(java.util.ArrayList<T> list, ShortFunction<? super T> shortFunction)
static <T> MutableShortList
ListIterate. collectShort(java.util.List<T> list, ShortFunction<? super T> shortFunction)
-
Uses of MutableShortList in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal that return MutableShortList Modifier and Type Method Description static <T> MutableShortList
RandomAccessListIterate. collectShort(java.util.List<T> list, ShortFunction<? super T> shortFunction)
-