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 ofMaporg.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 theMutableListinterface.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 theMutableSortedMapinterface.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 MutableShortListShortIterable. toList()Converts the ShortIterable to a new MutableShortList.MutableShortListShortIterable. toSortedList()default MutableShortListShortIterable. toSortedList(ShortComparator comparator)Converts the collection to a MutableShortList implementation sorted using the provided comparator.default <T> MutableShortListShortIterable. toSortedListBy(ShortToObjectFunction<T> function)Converts the collection to a MutableShortListImplementation sorted based on the natural order of the key returned byfunction.default <T> MutableShortListShortIterable. 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 byfunctionusing 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 MutableShortListMutableSortedBag. 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 MutableShortListMutableShortListFactory. empty()MutableShortListMutableShortListFactory. of()Same asMutableShortListFactory.empty().MutableShortListMutableShortListFactory. of(short... items)MutableShortListMutableShortListFactory. ofAll(java.lang.Iterable<java.lang.Short> iterable)MutableShortListMutableShortListFactory. ofAll(ShortIterable items)MutableShortListMutableShortListFactory. with()Same asMutableShortListFactory.empty().MutableShortListMutableShortListFactory. with(short... items)Creates a new list using the passeditemsargument as the backing store.MutableShortListMutableShortListFactory. withAll(java.lang.Iterable<java.lang.Short> iterable)MutableShortListMutableShortListFactory. withAll(ShortIterable items)default MutableShortListMutableShortListFactory. withInitialCapacity(int capacity)Same asMutableShortListFactory.empty().default MutableShortListMutableShortListFactory. 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 MutableShortListMutableList. 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 MutableShortListMutableShortList. asSynchronized()MutableShortListMutableShortList. asUnmodifiable()MutableShortListMutableShortList. distinct()default MutableShortListMutableShortList. newEmpty()Creates a new empty mutable version of the same List type.MutableShortListMutableShortList. reject(ShortPredicate predicate)default MutableShortListMutableShortList. rejectWithIndex(ShortIntPredicate predicate)Returns a new MutableShortList excluding all elements with corresponding indexes matching the specified predicate.MutableShortListMutableShortList. reverseThis()MutableShortListMutableShortList. select(ShortPredicate predicate)default MutableShortListMutableShortList. selectWithIndex(ShortIntPredicate predicate)Returns a new MutableShortList including all elements with corresponding indexes matching the specified predicate.default MutableShortListMutableShortList. shuffleThis()Randomly permutes this list mutating its contents and returns the same list (this).default MutableShortListMutableShortList. shuffleThis(java.util.Random rnd)Randomly permutes this list mutating its contents and returns the same list (this).MutableShortListMutableShortList. sortThis()Sorts this list mutating its contents and returns the same mutable list (this).default MutableShortListMutableShortList. sortThis(ShortComparator comparator)Sorts the internal data structure of this list and returns the list itself as a convenience.default <T> MutableShortListMutableShortList. sortThisBy(ShortToObjectFunction<T> function)Sorts the internal data structure of this list based on the natural order of the key returned byfunction.default <T> MutableShortListMutableShortList. sortThisBy(ShortToObjectFunction<T> function, java.util.Comparator<? super T> comparator)Sorts the internal data structure of this list based on the key returned byfunctionusing the providedcomparator.MutableShortListMutableShortList. subList(int fromIndex, int toIndex)default MutableShortListMutableShortList. tap(ShortProcedure procedure)MutableShortListMutableShortList. toReversed()MutableShortListMutableShortList. with(short element)MutableShortListMutableShortList. withAll(ShortIterable elements)MutableShortListMutableShortList. without(short element)MutableShortListMutableShortList. 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 MutableShortListMutableOrderedMap. 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 MutableShortListMutableSortedMap. 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 MutableShortListMutableSortedSet. 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 MutableShortListImmutableShortEmptyBag. toList()MutableShortListImmutableShortHashBag. toList()MutableShortListImmutableShortSingletonBag. toList()MutableShortListImmutableShortEmptyBag. toSortedList()MutableShortListImmutableShortHashBag. toSortedList()MutableShortListImmutableShortSingletonBag. 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 MutableShortListAbstractMutableSortedBag. collectShort(ShortFunction<? super T> shortFunction)MutableShortListSynchronizedSortedBag. collectShort(ShortFunction<? super T> shortFunction)MutableShortListUnmodifiableSortedBag. 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 MutableShortListAbstractSynchronizedShortCollection. toList()MutableShortListAbstractUnmodifiableShortCollection. toList()MutableShortListAbstractSynchronizedShortCollection. toSortedList()MutableShortListAbstractUnmodifiableShortCollection. 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 MutableShortListAbstractLazyShortIterable. toList()MutableShortListCollectShortIterable. toList()MutableShortListLazyShortIterableAdapter. toList()MutableShortListReverseShortIterable. toList()MutableShortListSelectShortIterable. toList()MutableShortListAbstractLazyShortIterable. toSortedList()MutableShortListLazyShortIterableAdapter. 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 MutableShortListImmutableShortArrayList. toList()MutableShortListImmutableShortEmptyList. toList()MutableShortListImmutableShortSingletonList. toList()MutableShortListImmutableShortArrayList. toSortedList()MutableShortListImmutableShortEmptyList. toSortedList()MutableShortListImmutableShortSingletonList. 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 MutableShortListMultiReaderFastList. collectShort(ShortFunction<? super T> shortFunction)MutableShortListMultiReaderFastList.UntouchableMutableList. collectShort(ShortFunction<? super T> shortFunction)MutableShortListSynchronizedMutableList. collectShort(ShortFunction<? super T> shortFunction)MutableShortListUnmodifiableMutableList. 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 classShortArrayListShortArrayList is similar to FastList, and is memory-optimized for short primitives.classSynchronizedShortListA synchronized view of aMutableShortList.classUnmodifiableShortListThis file was automatically generated from template file unmodifiablePrimitiveList.stg.Fields in org.eclipse.collections.impl.list.mutable.primitive declared as MutableShortList Modifier and Type Field Description private MutableShortListBoxedMutableShortList. delegateMethods in org.eclipse.collections.impl.list.mutable.primitive that return MutableShortList Modifier and Type Method Description MutableShortListShortArrayList. asSynchronized()MutableShortListSynchronizedShortList. asSynchronized()MutableShortListUnmodifiableShortList. asSynchronized()MutableShortListShortArrayList. asUnmodifiable()MutableShortListSynchronizedShortList. asUnmodifiable()MutableShortListUnmodifiableShortList. asUnmodifiable()MutableShortListShortArrayList. distinct()MutableShortListSynchronizedShortList. distinct()MutableShortListUnmodifiableShortList. distinct()MutableShortListMutableShortListFactoryImpl. empty()private MutableShortListSynchronizedShortList. getMutableShortList()private MutableShortListUnmodifiableShortList. getMutableShortList()MutableShortListSynchronizedShortList. newEmpty()MutableShortListUnmodifiableShortList. newEmpty()MutableShortListMutableShortListFactoryImpl. of()MutableShortListMutableShortListFactoryImpl. of(short... items)MutableShortListMutableShortListFactoryImpl. ofAll(java.lang.Iterable<java.lang.Short> iterable)MutableShortListMutableShortListFactoryImpl. ofAll(ShortIterable items)MutableShortListSynchronizedShortList. reject(ShortPredicate predicate)MutableShortListUnmodifiableShortList. reject(ShortPredicate predicate)MutableShortListSynchronizedShortList. rejectWithIndex(ShortIntPredicate predicate)Returns a new MutableShortList excluding all elements with corresponding indexes matching the specified predicate.MutableShortListUnmodifiableShortList. rejectWithIndex(ShortIntPredicate predicate)Returns a new MutableShortList excluding all elements with corresponding indexes matching the specified predicate.MutableShortListSynchronizedShortList. reverseThis()MutableShortListUnmodifiableShortList. reverseThis()MutableShortListSynchronizedShortList. select(ShortPredicate predicate)MutableShortListUnmodifiableShortList. select(ShortPredicate predicate)MutableShortListSynchronizedShortList. selectWithIndex(ShortIntPredicate predicate)Returns a new MutableShortList including all elements with corresponding indexes matching the specified predicate.MutableShortListUnmodifiableShortList. selectWithIndex(ShortIntPredicate predicate)Returns a new MutableShortList including all elements with corresponding indexes matching the specified predicate.MutableShortListSynchronizedShortList. shuffleThis()MutableShortListSynchronizedShortList. shuffleThis(java.util.Random rnd)MutableShortListUnmodifiableShortList. shuffleThis()MutableShortListSynchronizedShortList. sortThis()MutableShortListSynchronizedShortList. sortThis(ShortComparator comparator)MutableShortListUnmodifiableShortList. sortThis()<T> MutableShortListSynchronizedShortList. sortThisBy(ShortToObjectFunction<T> function)<T> MutableShortListSynchronizedShortList. sortThisBy(ShortToObjectFunction<T> function, java.util.Comparator<? super T> comparator)MutableShortListShortArrayList. subList(int fromIndex, int toIndex)MutableShortListSynchronizedShortList. subList(int fromIndex, int toIndex)MutableShortListUnmodifiableShortList. subList(int fromIndex, int toIndex)MutableShortListSynchronizedShortList. toReversed()MutableShortListUnmodifiableShortList. toReversed()MutableShortListMutableShortListFactoryImpl. with()MutableShortListMutableShortListFactoryImpl. with(short... items)Creates a new list using the passeditemsargument as the backing store.MutableShortListMutableShortListFactoryImpl. withAll(java.lang.Iterable<java.lang.Short> iterable)MutableShortListMutableShortListFactoryImpl. withAll(ShortIterable items)MutableShortListMutableShortListFactoryImpl. withInitialCapacity(int capacity)Constructors in org.eclipse.collections.impl.list.mutable.primitive with parameters of type MutableShortList Constructor Description BoxedMutableShortList(MutableShortList delegate)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 MutableShortListImmutableByteShortEmptyMap. toList()MutableShortListImmutableByteShortHashMap. toList()MutableShortListImmutableByteShortSingletonMap. toList()MutableShortListImmutableCharShortEmptyMap. toList()MutableShortListImmutableCharShortHashMap. toList()MutableShortListImmutableCharShortSingletonMap. toList()MutableShortListImmutableDoubleShortEmptyMap. toList()MutableShortListImmutableDoubleShortHashMap. toList()MutableShortListImmutableDoubleShortSingletonMap. toList()MutableShortListImmutableFloatShortEmptyMap. toList()MutableShortListImmutableFloatShortHashMap. toList()MutableShortListImmutableFloatShortSingletonMap. toList()MutableShortListImmutableIntShortEmptyMap. toList()MutableShortListImmutableIntShortHashMap. toList()MutableShortListImmutableIntShortSingletonMap. toList()MutableShortListImmutableLongShortEmptyMap. toList()MutableShortListImmutableLongShortHashMap. toList()MutableShortListImmutableLongShortSingletonMap. toList()MutableShortListImmutableObjectShortEmptyMap. toList()MutableShortListImmutableObjectShortHashMap. toList()MutableShortListImmutableObjectShortSingletonMap. toList()MutableShortListImmutableShortShortEmptyMap. toList()MutableShortListImmutableShortShortHashMap. toList()MutableShortListImmutableShortShortSingletonMap. toList()MutableShortListImmutableByteShortEmptyMap. toSortedList()MutableShortListImmutableByteShortHashMap. toSortedList()MutableShortListImmutableByteShortSingletonMap. toSortedList()MutableShortListImmutableCharShortEmptyMap. toSortedList()MutableShortListImmutableCharShortHashMap. toSortedList()MutableShortListImmutableCharShortSingletonMap. toSortedList()MutableShortListImmutableDoubleShortEmptyMap. toSortedList()MutableShortListImmutableDoubleShortHashMap. toSortedList()MutableShortListImmutableDoubleShortSingletonMap. toSortedList()MutableShortListImmutableFloatShortEmptyMap. toSortedList()MutableShortListImmutableFloatShortHashMap. toSortedList()MutableShortListImmutableFloatShortSingletonMap. toSortedList()MutableShortListImmutableIntShortEmptyMap. toSortedList()MutableShortListImmutableIntShortHashMap. toSortedList()MutableShortListImmutableIntShortSingletonMap. toSortedList()MutableShortListImmutableLongShortEmptyMap. toSortedList()MutableShortListImmutableLongShortHashMap. toSortedList()MutableShortListImmutableLongShortSingletonMap. toSortedList()MutableShortListImmutableObjectShortEmptyMap. toSortedList()MutableShortListImmutableObjectShortHashMap. toSortedList()MutableShortListImmutableObjectShortSingletonMap. toSortedList()MutableShortListImmutableShortShortEmptyMap. toSortedList()MutableShortListImmutableShortShortHashMap. toSortedList()MutableShortListImmutableShortShortSingletonMap. 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 MutableShortListAbstractMutableShortKeySet. toList()MutableShortListAbstractMutableShortValuesMap.AbstractShortValuesCollection. toList()MutableShortListObjectShortHashMap. toList()MutableShortListObjectShortHashMap.ValuesCollection. toList()MutableShortListObjectShortHashMapWithHashingStrategy. toList()MutableShortListObjectShortHashMapWithHashingStrategy.ValuesCollection. toList()MutableShortListShortBooleanHashMap.KeysView. toList()MutableShortListSynchronizedByteShortMap. toList()MutableShortListSynchronizedCharShortMap. toList()MutableShortListSynchronizedDoubleShortMap. toList()MutableShortListSynchronizedFloatShortMap. toList()MutableShortListSynchronizedIntShortMap. toList()MutableShortListSynchronizedLongShortMap. toList()MutableShortListSynchronizedObjectShortMap. toList()MutableShortListSynchronizedShortShortMap. toList()MutableShortListUnmodifiableByteShortMap. toList()MutableShortListUnmodifiableCharShortMap. toList()MutableShortListUnmodifiableDoubleShortMap. toList()MutableShortListUnmodifiableFloatShortMap. toList()MutableShortListUnmodifiableIntShortMap. toList()MutableShortListUnmodifiableLongShortMap. toList()MutableShortListUnmodifiableObjectShortMap. toList()MutableShortListUnmodifiableShortShortMap. toList()MutableShortListAbstractMutableShortKeySet. toSortedList()MutableShortListAbstractMutableShortValuesMap.AbstractShortValuesCollection. toSortedList()MutableShortListObjectShortHashMap. toSortedList()MutableShortListObjectShortHashMap.ValuesCollection. toSortedList()MutableShortListObjectShortHashMapWithHashingStrategy. toSortedList()MutableShortListObjectShortHashMapWithHashingStrategy.ValuesCollection. toSortedList()MutableShortListSynchronizedByteShortMap. toSortedList()MutableShortListSynchronizedCharShortMap. toSortedList()MutableShortListSynchronizedDoubleShortMap. toSortedList()MutableShortListSynchronizedFloatShortMap. toSortedList()MutableShortListSynchronizedIntShortMap. toSortedList()MutableShortListSynchronizedLongShortMap. toSortedList()MutableShortListSynchronizedObjectShortMap. toSortedList()MutableShortListSynchronizedShortShortMap. toSortedList()MutableShortListUnmodifiableByteShortMap. toSortedList()MutableShortListUnmodifiableCharShortMap. toSortedList()MutableShortListUnmodifiableDoubleShortMap. toSortedList()MutableShortListUnmodifiableFloatShortMap. toSortedList()MutableShortListUnmodifiableIntShortMap. toSortedList()MutableShortListUnmodifiableLongShortMap. toSortedList()MutableShortListUnmodifiableObjectShortMap. toSortedList()MutableShortListUnmodifiableShortShortMap. 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 MutableShortListOrderedMapAdapter. collectShort(ShortFunction<? super V> shortFunction)MutableShortListUnmodifiableMutableOrderedMap. 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 MutableShortListAbstractMutableSortedMap. collectShort(ShortFunction<? super V> shortFunction)MutableShortListSynchronizedSortedMap. collectShort(ShortFunction<? super V> shortFunction)MutableShortListUnmodifiableTreeMap. 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 MutableShortListAbstractShortIterable. toList()MutableShortListSynchronizedShortIterable. toList()MutableShortListAbstractShortIterable. toSortedList()MutableShortListSynchronizedShortIterable. 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 MutableShortListImmutableShortEmptySet. toList()MutableShortListImmutableShortSingletonSet. toList()MutableShortListImmutableShortEmptySet. toSortedList()MutableShortListImmutableShortSingletonSet. 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 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 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 MutableShortListImmutableShortEmptyStack. toList()MutableShortListImmutableShortSingletonStack. toList()MutableShortListImmutableShortArrayStack. toSortedList()MutableShortListImmutableShortEmptyStack. toSortedList()MutableShortListImmutableShortSingletonStack. 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 MutableShortListSynchronizedShortStack. toList()MutableShortListUnmodifiableShortStack. toList()MutableShortListShortArrayStack. toSortedList()MutableShortListSynchronizedShortStack. toSortedList()MutableShortListUnmodifiableShortStack. 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 MutableShortListAbstractShortStack. 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> MutableShortListArrayIterate. collectShort(T[] objectArray, ShortFunction<? super T> shortFunction)static <T> MutableShortListArrayListIterate. collectShort(java.util.ArrayList<T> list, ShortFunction<? super T> shortFunction)static <T> MutableShortListListIterate. 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> MutableShortListRandomAccessListIterate. collectShort(java.util.List<T> list, ShortFunction<? super T> shortFunction)
-