Uses of Interface
org.eclipse.collections.api.list.primitive.ShortList
-
Packages that use ShortList Package Description org.eclipse.collections.api.bag.sorted This package contains interfaces for SortedBag API.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.api.stack.primitive This package contains mutable and immutable primitive stack API.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.primitive This package contains implementations of the mutable primitive list interfaces.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 -
-
Uses of ShortList in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted that return ShortList Modifier and Type Method Description ShortList
SortedBag. collectShort(ShortFunction<? super T> shortFunction)
-
Uses of ShortList in org.eclipse.collections.api.list
Methods in org.eclipse.collections.api.list that return ShortList Modifier and Type Method Description ShortList
ListIterable. collectShort(ShortFunction<? super T> shortFunction)
-
Uses of ShortList in org.eclipse.collections.api.list.primitive
Subinterfaces of ShortList in org.eclipse.collections.api.list.primitive Modifier and Type Interface Description interface
ImmutableShortList
This file was automatically generated from template file immutablePrimitiveList.stg.interface
MutableShortList
This file was automatically generated from template file mutablePrimitiveList.stg.Methods in org.eclipse.collections.api.list.primitive that return ShortList Modifier and Type Method Description ShortList
ShortList. distinct()
ShortList
ShortList. reject(ShortPredicate predicate)
default ShortList
ShortList. rejectWithIndex(ShortIntPredicate predicate)
Returns a new ShortList excluding all elements with corresponding indexes matching the specified predicate.ShortList
ShortList. select(ShortPredicate predicate)
default ShortList
ShortList. selectWithIndex(ShortIntPredicate predicate)
Returns a new ShortList including all elements with corresponding indexes matching the specified predicate.ShortList
ShortList. subList(int fromIndex, int toIndex)
default ShortList
ShortList. tap(ShortProcedure procedure)
ShortList
ShortList. toReversed()
Methods in org.eclipse.collections.api.list.primitive with parameters of type ShortList Modifier and Type Method Description long
ShortList. dotProduct(ShortList list)
default void
ShortList. forEachInBoth(ShortList other, ShortShortProcedure procedure)
This method iterates over two CharList instances of the same size together using the specified CharCharProcedure. -
Uses of ShortList in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return ShortList Modifier and Type Method Description ShortList
OrderedMap. collectShort(ShortFunction<? super V> shortFunction)
-
Uses of ShortList in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted that return ShortList Modifier and Type Method Description ShortList
SortedMapIterable. collectShort(ShortFunction<? super V> shortFunction)
-
Uses of ShortList in org.eclipse.collections.api.set.sorted
Methods in org.eclipse.collections.api.set.sorted that return ShortList Modifier and Type Method Description ShortList
SortedSetIterable. collectShort(ShortFunction<? super T> shortFunction)
-
Uses of ShortList in org.eclipse.collections.api.stack.primitive
Methods in org.eclipse.collections.api.stack.primitive that return ShortList Modifier and Type Method Description ShortList
ShortStack. peek(int count)
Returns ShortList of the number of elements specified by the count, beginning with the top of the stack.ShortList
MutableShortStack. pop(int count)
Removes and returns a ShortList of the number of elements specified by the count, beginning with the top of the stack. -
Uses of ShortList in org.eclipse.collections.impl.lazy.primitive
Fields in org.eclipse.collections.impl.lazy.primitive declared as ShortList Modifier and Type Field Description private ShortList
ReverseShortIterable. adapted
Methods in org.eclipse.collections.impl.lazy.primitive with parameters of type ShortList Modifier and Type Method Description static ReverseShortIterable
ReverseShortIterable. adapt(ShortList shortList)
Constructors in org.eclipse.collections.impl.lazy.primitive with parameters of type ShortList Constructor Description ReverseShortIterable(ShortList newAdapted)
-
Uses of ShortList in org.eclipse.collections.impl.list.immutable.primitive
Classes in org.eclipse.collections.impl.list.immutable.primitive that implement ShortList Modifier and Type Class Description (package private) class
ImmutableShortArrayList
ImmutableShortArrayList is the non-modifiable equivalent ofShortArrayList
.(package private) class
ImmutableShortEmptyList
ImmutableShortEmptyList is an optimization forImmutableShortList
of size 0.(package private) class
ImmutableShortSingletonList
ImmutableShortSingletonList is an optimization forImmutableShortList
of size 1.Methods in org.eclipse.collections.impl.list.immutable.primitive with parameters of type ShortList Modifier and Type Method Description long
ImmutableShortArrayList. dotProduct(ShortList list)
long
ImmutableShortEmptyList. dotProduct(ShortList list)
long
ImmutableShortSingletonList. dotProduct(ShortList list)
-
Uses of ShortList in org.eclipse.collections.impl.list.mutable.primitive
Classes in org.eclipse.collections.impl.list.mutable.primitive that implement ShortList 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 with parameters of type ShortList Modifier and Type Method Description long
ShortArrayList. dotProduct(ShortList list)
long
SynchronizedShortList. dotProduct(ShortList list)
long
UnmodifiableShortList. dotProduct(ShortList list)
void
SynchronizedShortList. forEachInBoth(ShortList other, ShortShortProcedure procedure)
-
Uses of ShortList in org.eclipse.collections.impl.stack.immutable.primitive
Methods in org.eclipse.collections.impl.stack.immutable.primitive that return ShortList Modifier and Type Method Description ShortList
ImmutableShortEmptyStack. peek(int count)
ShortList
ImmutableShortSingletonStack. peek(int count)
-
Uses of ShortList in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive that return ShortList Modifier and Type Method Description ShortList
SynchronizedShortStack. peek(int count)
ShortList
UnmodifiableShortStack. peek(int count)
ShortList
ShortArrayStack. pop(int count)
ShortList
SynchronizedShortStack. pop(int count)
ShortList
UnmodifiableShortStack. pop(int count)
-
Uses of ShortList in org.eclipse.collections.impl.stack.primitive
Methods in org.eclipse.collections.impl.stack.primitive that return ShortList Modifier and Type Method Description ShortList
AbstractShortStack. peek(int count)
-