Uses of Interface
org.eclipse.collections.api.ordered.primitive.ReversibleShortIterable
-
Packages that use ReversibleShortIterable Package Description org.eclipse.collections.api.list.primitive This package contains mutable and immutable primitive list API.org.eclipse.collections.api.ordered org.eclipse.collections.api.ordered.primitive 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. -
-
Uses of ReversibleShortIterable in org.eclipse.collections.api.list.primitive
Subinterfaces of ReversibleShortIterable 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.interface
ShortList
This file was automatically generated from template file primitiveList.stg. -
Uses of ReversibleShortIterable in org.eclipse.collections.api.ordered
Methods in org.eclipse.collections.api.ordered that return ReversibleShortIterable Modifier and Type Method Description ReversibleShortIterable
ReversibleIterable. collectShort(ShortFunction<? super T> shortFunction)
-
Uses of ReversibleShortIterable in org.eclipse.collections.api.ordered.primitive
Methods in org.eclipse.collections.api.ordered.primitive that return ReversibleShortIterable Modifier and Type Method Description ReversibleShortIterable
ReversibleShortIterable. distinct()
ReversibleShortIterable
ReversibleShortIterable. reject(ShortPredicate predicate)
default ReversibleShortIterable
ReversibleShortIterable. rejectWithIndex(ShortIntPredicate predicate)
Returns a new ReversibleShortIterable excluding all elements with corresponding indexes matching the specified predicate.ReversibleShortIterable
ReversibleShortIterable. select(ShortPredicate predicate)
default ReversibleShortIterable
ReversibleShortIterable. selectWithIndex(ShortIntPredicate predicate)
Returns a new ReversibleShortIterable including all elements with corresponding indexes matching the specified predicate.ReversibleShortIterable
ReversibleShortIterable. toReversed()
-
Uses of ReversibleShortIterable in org.eclipse.collections.impl.list.immutable.primitive
Classes in org.eclipse.collections.impl.list.immutable.primitive that implement ReversibleShortIterable 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. -
Uses of ReversibleShortIterable in org.eclipse.collections.impl.list.mutable.primitive
Classes in org.eclipse.collections.impl.list.mutable.primitive that implement ReversibleShortIterable 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.
-