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. -
-
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, 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(Iterable<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(Iterable<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(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, 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)
-