Uses of Interface
org.eclipse.collections.api.list.primitive.CharList
-
Packages that use CharList 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 org.eclipse.collections.impl.string.immutable -
-
Uses of CharList in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted that return CharList Modifier and Type Method Description CharList
SortedBag. collectChar(CharFunction<? super T> charFunction)
-
Uses of CharList in org.eclipse.collections.api.list
Methods in org.eclipse.collections.api.list that return CharList Modifier and Type Method Description CharList
ListIterable. collectChar(CharFunction<? super T> charFunction)
-
Uses of CharList in org.eclipse.collections.api.list.primitive
Subinterfaces of CharList in org.eclipse.collections.api.list.primitive Modifier and Type Interface Description interface
ImmutableCharList
This file was automatically generated from template file immutablePrimitiveList.stg.interface
MutableCharList
This file was automatically generated from template file mutablePrimitiveList.stg.Methods in org.eclipse.collections.api.list.primitive that return CharList Modifier and Type Method Description CharList
CharList. distinct()
CharList
CharList. reject(CharPredicate predicate)
default CharList
CharList. rejectWithIndex(CharIntPredicate predicate)
Returns a new CharList excluding all elements with corresponding indexes matching the specified predicate.CharList
CharList. select(CharPredicate predicate)
default CharList
CharList. selectWithIndex(CharIntPredicate predicate)
Returns a new CharList including all elements with corresponding indexes matching the specified predicate.CharList
CharList. subList(int fromIndex, int toIndex)
default CharList
CharList. tap(CharProcedure procedure)
CharList
CharList. toReversed()
Methods in org.eclipse.collections.api.list.primitive with parameters of type CharList Modifier and Type Method Description long
CharList. dotProduct(CharList list)
default void
CharList. forEachInBoth(CharList other, CharCharProcedure procedure)
This method iterates over two CharList instances of the same size together using the specified CharCharProcedure. -
Uses of CharList in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return CharList Modifier and Type Method Description CharList
OrderedMap. collectChar(CharFunction<? super V> charFunction)
-
Uses of CharList in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted that return CharList Modifier and Type Method Description CharList
SortedMapIterable. collectChar(CharFunction<? super V> charFunction)
-
Uses of CharList in org.eclipse.collections.api.set.sorted
Methods in org.eclipse.collections.api.set.sorted that return CharList Modifier and Type Method Description CharList
SortedSetIterable. collectChar(CharFunction<? super T> charFunction)
-
Uses of CharList in org.eclipse.collections.api.stack.primitive
Methods in org.eclipse.collections.api.stack.primitive that return CharList Modifier and Type Method Description CharList
CharStack. peek(int count)
Returns CharList of the number of elements specified by the count, beginning with the top of the stack.CharList
MutableCharStack. pop(int count)
Removes and returns a CharList of the number of elements specified by the count, beginning with the top of the stack. -
Uses of CharList in org.eclipse.collections.impl.lazy.primitive
Fields in org.eclipse.collections.impl.lazy.primitive declared as CharList Modifier and Type Field Description private CharList
ReverseCharIterable. adapted
Methods in org.eclipse.collections.impl.lazy.primitive with parameters of type CharList Modifier and Type Method Description static ReverseCharIterable
ReverseCharIterable. adapt(CharList charList)
Constructors in org.eclipse.collections.impl.lazy.primitive with parameters of type CharList Constructor Description ReverseCharIterable(CharList newAdapted)
-
Uses of CharList in org.eclipse.collections.impl.list.immutable.primitive
Classes in org.eclipse.collections.impl.list.immutable.primitive that implement CharList 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.Methods in org.eclipse.collections.impl.list.immutable.primitive with parameters of type CharList Modifier and Type Method Description long
ImmutableCharArrayList. dotProduct(CharList list)
long
ImmutableCharEmptyList. dotProduct(CharList list)
long
ImmutableCharSingletonList. dotProduct(CharList list)
-
Uses of CharList in org.eclipse.collections.impl.list.mutable.primitive
Classes in org.eclipse.collections.impl.list.mutable.primitive that implement CharList 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.Methods in org.eclipse.collections.impl.list.mutable.primitive with parameters of type CharList Modifier and Type Method Description long
CharArrayList. dotProduct(CharList list)
long
SynchronizedCharList. dotProduct(CharList list)
long
UnmodifiableCharList. dotProduct(CharList list)
void
SynchronizedCharList. forEachInBoth(CharList other, CharCharProcedure procedure)
-
Uses of CharList in org.eclipse.collections.impl.stack.immutable.primitive
Methods in org.eclipse.collections.impl.stack.immutable.primitive that return CharList Modifier and Type Method Description CharList
ImmutableCharEmptyStack. peek(int count)
CharList
ImmutableCharSingletonStack. peek(int count)
-
Uses of CharList in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive that return CharList Modifier and Type Method Description CharList
SynchronizedCharStack. peek(int count)
CharList
UnmodifiableCharStack. peek(int count)
CharList
CharArrayStack. pop(int count)
CharList
SynchronizedCharStack. pop(int count)
CharList
UnmodifiableCharStack. pop(int count)
-
Uses of CharList in org.eclipse.collections.impl.stack.primitive
Methods in org.eclipse.collections.impl.stack.primitive that return CharList Modifier and Type Method Description CharList
AbstractCharStack. peek(int count)
-
Uses of CharList in org.eclipse.collections.impl.string.immutable
Classes in org.eclipse.collections.impl.string.immutable that implement CharList Modifier and Type Class Description class
CharAdapter
Provides a view into the char[] stored in a String as an ImmutableCharList.Methods in org.eclipse.collections.impl.string.immutable with parameters of type CharList Modifier and Type Method Description long
CharAdapter. dotProduct(CharList list)
-