Uses of Interface
org.eclipse.collections.api.ordered.primitive.ReversibleCharIterable
-
Packages that use ReversibleCharIterable 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.string.immutable -
-
Uses of ReversibleCharIterable in org.eclipse.collections.api.list.primitive
Subinterfaces of ReversibleCharIterable in org.eclipse.collections.api.list.primitive Modifier and Type Interface Description interface
CharList
This file was automatically generated from template file primitiveList.stg.interface
ImmutableCharList
This file was automatically generated from template file immutablePrimitiveList.stg.interface
MutableCharList
This file was automatically generated from template file mutablePrimitiveList.stg. -
Uses of ReversibleCharIterable in org.eclipse.collections.api.ordered
Methods in org.eclipse.collections.api.ordered that return ReversibleCharIterable Modifier and Type Method Description ReversibleCharIterable
ReversibleIterable. collectChar(CharFunction<? super T> charFunction)
-
Uses of ReversibleCharIterable in org.eclipse.collections.api.ordered.primitive
Methods in org.eclipse.collections.api.ordered.primitive that return ReversibleCharIterable Modifier and Type Method Description ReversibleCharIterable
ReversibleCharIterable. distinct()
ReversibleCharIterable
ReversibleCharIterable. reject(CharPredicate predicate)
default ReversibleCharIterable
ReversibleCharIterable. rejectWithIndex(CharIntPredicate predicate)
Returns a new ReversibleCharIterable excluding all elements with corresponding indexes matching the specified predicate.ReversibleCharIterable
ReversibleCharIterable. select(CharPredicate predicate)
default ReversibleCharIterable
ReversibleCharIterable. selectWithIndex(CharIntPredicate predicate)
Returns a new ReversibleCharIterable including all elements with corresponding indexes matching the specified predicate.ReversibleCharIterable
ReversibleCharIterable. toReversed()
-
Uses of ReversibleCharIterable in org.eclipse.collections.impl.list.immutable.primitive
Classes in org.eclipse.collections.impl.list.immutable.primitive that implement ReversibleCharIterable Modifier and Type Class Description (package private) class
ImmutableCharArrayList
ImmutableCharArrayList is the non-modifiable equivalent ofCharArrayList
.(package private) class
ImmutableCharEmptyList
ImmutableCharEmptyList is an optimization forImmutableCharList
of size 0.(package private) class
ImmutableCharSingletonList
ImmutableCharSingletonList is an optimization forImmutableCharList
of size 1. -
Uses of ReversibleCharIterable in org.eclipse.collections.impl.list.mutable.primitive
Classes in org.eclipse.collections.impl.list.mutable.primitive that implement ReversibleCharIterable Modifier and Type Class Description class
CharArrayList
CharArrayList is similar to FastList, and is memory-optimized for char primitives.class
SynchronizedCharList
A synchronized view of aMutableCharList
.class
UnmodifiableCharList
This file was automatically generated from template file unmodifiablePrimitiveList.stg. -
Uses of ReversibleCharIterable in org.eclipse.collections.impl.string.immutable
Classes in org.eclipse.collections.impl.string.immutable that implement ReversibleCharIterable Modifier and Type Class Description class
CharAdapter
Provides a view into the char[] stored in a String as an ImmutableCharList.
-