Uses of Interface
org.eclipse.collections.api.ordered.primitive.ReversibleIntIterable
-
Packages that use ReversibleIntIterable 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.org.eclipse.collections.impl.list.primitive This package contains implementations of the primitive list interfaces.org.eclipse.collections.impl.string.immutable -
-
Uses of ReversibleIntIterable in org.eclipse.collections.api.list.primitive
Subinterfaces of ReversibleIntIterable in org.eclipse.collections.api.list.primitive Modifier and Type Interface Description interface
ImmutableIntList
This file was automatically generated from template file immutablePrimitiveList.stg.interface
IntList
This file was automatically generated from template file primitiveList.stg.interface
MutableIntList
This file was automatically generated from template file mutablePrimitiveList.stg. -
Uses of ReversibleIntIterable in org.eclipse.collections.api.ordered
Methods in org.eclipse.collections.api.ordered that return ReversibleIntIterable Modifier and Type Method Description ReversibleIntIterable
ReversibleIterable. collectInt(IntFunction<? super T> intFunction)
-
Uses of ReversibleIntIterable in org.eclipse.collections.api.ordered.primitive
Methods in org.eclipse.collections.api.ordered.primitive that return ReversibleIntIterable Modifier and Type Method Description ReversibleIntIterable
ReversibleIntIterable. distinct()
ReversibleIntIterable
ReversibleIntIterable. reject(IntPredicate predicate)
default ReversibleIntIterable
ReversibleIntIterable. rejectWithIndex(IntIntPredicate predicate)
Returns a new ReversibleIntIterable excluding all elements with corresponding indexes matching the specified predicate.ReversibleIntIterable
ReversibleIntIterable. select(IntPredicate predicate)
default ReversibleIntIterable
ReversibleIntIterable. selectWithIndex(IntIntPredicate predicate)
Returns a new ReversibleIntIterable including all elements with corresponding indexes matching the specified predicate.ReversibleIntIterable
ReversibleIntIterable. toReversed()
-
Uses of ReversibleIntIterable in org.eclipse.collections.impl.list.immutable.primitive
Classes in org.eclipse.collections.impl.list.immutable.primitive that implement ReversibleIntIterable Modifier and Type Class Description (package private) class
ImmutableIntArrayList
ImmutableIntArrayList is the non-modifiable equivalent ofIntArrayList
.(package private) class
ImmutableIntEmptyList
ImmutableIntEmptyList is an optimization forImmutableIntList
of size 0.(package private) class
ImmutableIntSingletonList
ImmutableIntSingletonList is an optimization forImmutableIntList
of size 1. -
Uses of ReversibleIntIterable in org.eclipse.collections.impl.list.mutable.primitive
Classes in org.eclipse.collections.impl.list.mutable.primitive that implement ReversibleIntIterable Modifier and Type Class Description class
IntArrayList
IntArrayList is similar to FastList, and is memory-optimized for int primitives.class
SynchronizedIntList
A synchronized view of aMutableIntList
.class
UnmodifiableIntList
This file was automatically generated from template file unmodifiablePrimitiveList.stg. -
Uses of ReversibleIntIterable in org.eclipse.collections.impl.list.primitive
Classes in org.eclipse.collections.impl.list.primitive that implement ReversibleIntIterable Modifier and Type Class Description class
IntInterval
An IntInterval is a range of ints that may be iterated over using a step value. -
Uses of ReversibleIntIterable in org.eclipse.collections.impl.string.immutable
Classes in org.eclipse.collections.impl.string.immutable that implement ReversibleIntIterable Modifier and Type Class Description class
CodePointAdapter
Calculates and provides the code points stored in a String as an ImmutableIntList.class
CodePointList
Calculates and provides the code points stored in a String as an ImmutableIntList.
-