Uses of Interface
org.eclipse.collections.api.list.primitive.MutableCharList
Packages that use MutableCharList
Package
Description
This package contains interfaces for Eclipse Collections API.
This package contains interfaces for SortedBag API.
This package contains factory API for creating immutable primitive list instances.
This package contains interfaces for list API which enhance the performance and functionality of
List
.This package contains mutable and immutable primitive list API.
This package contains interfaces for map API which enhance the performance and functionality of
Map
This package contains mutable and immutable sorted map interfaces.
This package contains interfaces for sorted set API.
This package contains implementations of the immutable primitive bag interfaces.
This package contains implementations of
MutableSortedBag
.This package contains implementations of the mutable primitive collection interfaces.
This package contains implementations of the lazy primitive iterator interfaces.
This package contains implementations of immutable primitive list interfaces and immutable primitive list factory interfaces.
This package contains implementations of the
MutableList
interface.This package contains implementations of the mutable primitive list interfaces.
This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the
MutableSortedMap
interface.This package contains implementations of the immutable primitive set interfaces.
This package contains implementations of
MutableSortedSet
.This package contains implementations of the immutable primitive stack interfaces.
This package contains implementations of the mutable primitive stack interfaces.
This package contains static utilities that provide iteration pattern implementations which work with JCF collections.
This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections.
-
Uses of MutableCharList in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return MutableCharListModifier and TypeMethodDescriptionCharIterable.toList()
Converts the CharIterable to a new MutableCharList.CharIterable.toSortedList()
default MutableCharList
CharIterable.toSortedList
(CharComparator comparator) Converts the collection to a MutableCharList implementation sorted using the provided comparator.default <T> MutableCharList
CharIterable.toSortedListBy
(CharToObjectFunction<T> function) Converts the collection to a MutableCharListImplementation sorted based on the natural order of the key returned byfunction
.default <T> MutableCharList
CharIterable.toSortedListBy
(CharToObjectFunction<T> function, Comparator<? super T> comparator) Converts the collection to a MutableCharList implementation, which is sorted based on the key returned byfunction
using the providedcomparator
. -
Uses of MutableCharList in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted that return MutableCharListModifier and TypeMethodDescriptionMutableSortedBag.collectChar
(CharFunction<? super T> charFunction) -
Uses of MutableCharList in org.eclipse.collections.api.factory.list.primitive
Methods in org.eclipse.collections.api.factory.list.primitive that return MutableCharListModifier and TypeMethodDescriptionMutableCharListFactory.empty()
MutableCharListFactory.of()
Same asMutableCharListFactory.empty()
.MutableCharListFactory.of
(char... items) Same asMutableCharListFactory.with(char[])
.MutableCharListFactory.ofAll
(CharIterable items) MutableCharListFactory.with()
Same asMutableCharListFactory.empty()
.MutableCharListFactory.with
(char... items) Creates a new list using the passeditems
argument as the backing store.MutableCharListFactory.withAll
(CharIterable items) default MutableCharList
MutableCharListFactory.withInitialCapacity
(int capacity) Same asMutableCharListFactory.empty()
.default MutableCharList
MutableCharListFactory.wrapCopy
(char... array) Creates a new list by first copying the array passed in. -
Uses of MutableCharList in org.eclipse.collections.api.list
Methods in org.eclipse.collections.api.list that return MutableCharListModifier and TypeMethodDescriptiondefault MutableCharList
MutableList.collectChar
(CharFunction<? super T> charFunction) -
Uses of MutableCharList in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive that return MutableCharListModifier and TypeMethodDescriptionMutableCharList.asSynchronized()
MutableCharList.asUnmodifiable()
MutableCharList.distinct()
default MutableCharList
MutableCharList.newEmpty()
Creates a new empty mutable version of the same List type.MutableCharList.reject
(CharPredicate predicate) default MutableCharList
MutableCharList.rejectWithIndex
(CharIntPredicate predicate) Returns a new MutableCharList excluding all elements with corresponding indexes matching the specified predicate.MutableCharList.reverseThis()
MutableCharList.select
(CharPredicate predicate) default MutableCharList
MutableCharList.selectWithIndex
(CharIntPredicate predicate) Returns a new MutableCharList including all elements with corresponding indexes matching the specified predicate.default MutableCharList
MutableCharList.shuffleThis()
Randomly permutes this list mutating its contents and returns the same list (this).default MutableCharList
MutableCharList.shuffleThis
(Random rnd) Randomly permutes this list mutating its contents and returns the same list (this).MutableCharList.sortThis()
Sorts this list mutating its contents and returns the same mutable list (this).default MutableCharList
MutableCharList.sortThis
(CharComparator comparator) Sorts the internal data structure of this list and returns the list itself as a convenience.default <T> MutableCharList
MutableCharList.sortThisBy
(CharToObjectFunction<T> function) Sorts the internal data structure of this list based on the natural order of the key returned byfunction
.default <T> MutableCharList
MutableCharList.sortThisBy
(CharToObjectFunction<T> function, Comparator<? super T> comparator) Sorts the internal data structure of this list based on the key returned byfunction
using the providedcomparator
.MutableCharList.subList
(int fromIndex, int toIndex) default MutableCharList
MutableCharList.tap
(CharProcedure procedure) MutableCharList.toReversed()
MutableCharList.with
(char element) MutableCharList.withAll
(CharIterable elements) MutableCharList.without
(char element) MutableCharList.withoutAll
(CharIterable elements) -
Uses of MutableCharList in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return MutableCharListModifier and TypeMethodDescriptionMutableOrderedMap.collectChar
(CharFunction<? super V> charFunction) -
Uses of MutableCharList in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted that return MutableCharListModifier and TypeMethodDescriptionMutableSortedMap.collectChar
(CharFunction<? super V> charFunction) -
Uses of MutableCharList in org.eclipse.collections.api.set.sorted
Methods in org.eclipse.collections.api.set.sorted that return MutableCharListModifier and TypeMethodDescriptionMutableSortedSet.collectChar
(CharFunction<? super T> charFunction) -
Uses of MutableCharList in org.eclipse.collections.impl.bag.immutable.primitive
Methods in org.eclipse.collections.impl.bag.immutable.primitive that return MutableCharListModifier and TypeMethodDescriptionImmutableCharEmptyBag.toList()
ImmutableCharHashBag.toList()
ImmutableCharSingletonBag.toList()
ImmutableCharEmptyBag.toSortedList()
ImmutableCharHashBag.toSortedList()
ImmutableCharSingletonBag.toSortedList()
-
Uses of MutableCharList in org.eclipse.collections.impl.bag.sorted.mutable
Methods in org.eclipse.collections.impl.bag.sorted.mutable that return MutableCharListModifier and TypeMethodDescriptionAbstractMutableSortedBag.collectChar
(CharFunction<? super T> charFunction) SynchronizedSortedBag.collectChar
(CharFunction<? super T> charFunction) UnmodifiableSortedBag.collectChar
(CharFunction<? super T> charFunction) -
Uses of MutableCharList in org.eclipse.collections.impl.collection.mutable.primitive
Methods in org.eclipse.collections.impl.collection.mutable.primitive that return MutableCharListModifier and TypeMethodDescriptionAbstractSynchronizedCharCollection.toList()
AbstractUnmodifiableCharCollection.toList()
AbstractSynchronizedCharCollection.toSortedList()
AbstractUnmodifiableCharCollection.toSortedList()
-
Uses of MutableCharList in org.eclipse.collections.impl.lazy.primitive
Methods in org.eclipse.collections.impl.lazy.primitive that return MutableCharListModifier and TypeMethodDescriptionAbstractLazyCharIterable.toList()
CollectCharIterable.toList()
LazyCharIterableAdapter.toList()
ReverseCharIterable.toList()
SelectCharIterable.toList()
AbstractLazyCharIterable.toSortedList()
LazyCharIterableAdapter.toSortedList()
-
Uses of MutableCharList in org.eclipse.collections.impl.list.immutable.primitive
Methods in org.eclipse.collections.impl.list.immutable.primitive that return MutableCharListModifier and TypeMethodDescriptionImmutableCharArrayList.toList()
ImmutableCharEmptyList.toList()
ImmutableCharSingletonList.toList()
ImmutableCharArrayList.toSortedList()
ImmutableCharEmptyList.toSortedList()
ImmutableCharSingletonList.toSortedList()
-
Uses of MutableCharList in org.eclipse.collections.impl.list.mutable
Methods in org.eclipse.collections.impl.list.mutable that return MutableCharListModifier and TypeMethodDescriptionMultiReaderFastList.collectChar
(CharFunction<? super T> charFunction) MultiReaderFastList.UntouchableMutableList.collectChar
(CharFunction<? super T> charFunction) SynchronizedMutableList.collectChar
(CharFunction<? super T> charFunction) UnmodifiableMutableList.collectChar
(CharFunction<? super T> charFunction) -
Uses of MutableCharList in org.eclipse.collections.impl.list.mutable.primitive
Classes in org.eclipse.collections.impl.list.mutable.primitive that implement MutableCharListModifier and TypeClassDescriptionclass
CharArrayList is similar to FastList, and is memory-optimized for char primitives.class
A synchronized view of aMutableCharList
.class
This file was automatically generated from template file unmodifiablePrimitiveList.stg.Methods in org.eclipse.collections.impl.list.mutable.primitive that return MutableCharListModifier and TypeMethodDescriptionCharArrayList.asSynchronized()
SynchronizedCharList.asSynchronized()
UnmodifiableCharList.asSynchronized()
CharArrayList.asUnmodifiable()
SynchronizedCharList.asUnmodifiable()
UnmodifiableCharList.asUnmodifiable()
CharArrayList.distinct()
SynchronizedCharList.distinct()
UnmodifiableCharList.distinct()
MutableCharListFactoryImpl.empty()
private MutableCharList
SynchronizedCharList.getMutableCharList()
private MutableCharList
UnmodifiableCharList.getMutableCharList()
SynchronizedCharList.newEmpty()
UnmodifiableCharList.newEmpty()
MutableCharListFactoryImpl.of()
MutableCharListFactoryImpl.of
(char... items) MutableCharListFactoryImpl.ofAll
(CharIterable items) SynchronizedCharList.reject
(CharPredicate predicate) UnmodifiableCharList.reject
(CharPredicate predicate) SynchronizedCharList.rejectWithIndex
(CharIntPredicate predicate) Returns a new MutableCharList excluding all elements with corresponding indexes matching the specified predicate.UnmodifiableCharList.rejectWithIndex
(CharIntPredicate predicate) Returns a new MutableCharList excluding all elements with corresponding indexes matching the specified predicate.SynchronizedCharList.reverseThis()
UnmodifiableCharList.reverseThis()
SynchronizedCharList.select
(CharPredicate predicate) UnmodifiableCharList.select
(CharPredicate predicate) SynchronizedCharList.selectWithIndex
(CharIntPredicate predicate) Returns a new MutableCharList including all elements with corresponding indexes matching the specified predicate.UnmodifiableCharList.selectWithIndex
(CharIntPredicate predicate) Returns a new MutableCharList including all elements with corresponding indexes matching the specified predicate.SynchronizedCharList.shuffleThis()
SynchronizedCharList.shuffleThis
(Random rnd) UnmodifiableCharList.shuffleThis()
SynchronizedCharList.sortThis()
SynchronizedCharList.sortThis
(CharComparator comparator) UnmodifiableCharList.sortThis()
<T> MutableCharList
SynchronizedCharList.sortThisBy
(CharToObjectFunction<T> function) <T> MutableCharList
SynchronizedCharList.sortThisBy
(CharToObjectFunction<T> function, Comparator<? super T> comparator) CharArrayList.subList
(int fromIndex, int toIndex) SynchronizedCharList.subList
(int fromIndex, int toIndex) UnmodifiableCharList.subList
(int fromIndex, int toIndex) SynchronizedCharList.toReversed()
UnmodifiableCharList.toReversed()
MutableCharListFactoryImpl.with()
MutableCharListFactoryImpl.with
(char... items) Creates a new list using the passeditems
argument as the backing store.MutableCharListFactoryImpl.withAll
(CharIterable items) MutableCharListFactoryImpl.withInitialCapacity
(int capacity) Constructors in org.eclipse.collections.impl.list.mutable.primitive with parameters of type MutableCharList -
Uses of MutableCharList in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive that return MutableCharListModifier and TypeMethodDescriptionImmutableByteCharEmptyMap.toList()
ImmutableByteCharHashMap.toList()
ImmutableByteCharSingletonMap.toList()
ImmutableCharCharEmptyMap.toList()
ImmutableCharCharHashMap.toList()
ImmutableCharCharSingletonMap.toList()
ImmutableDoubleCharEmptyMap.toList()
ImmutableDoubleCharHashMap.toList()
ImmutableDoubleCharSingletonMap.toList()
ImmutableFloatCharEmptyMap.toList()
ImmutableFloatCharHashMap.toList()
ImmutableFloatCharSingletonMap.toList()
ImmutableIntCharEmptyMap.toList()
ImmutableIntCharHashMap.toList()
ImmutableIntCharSingletonMap.toList()
ImmutableLongCharEmptyMap.toList()
ImmutableLongCharHashMap.toList()
ImmutableLongCharSingletonMap.toList()
ImmutableObjectCharEmptyMap.toList()
ImmutableObjectCharHashMap.toList()
ImmutableObjectCharSingletonMap.toList()
ImmutableShortCharEmptyMap.toList()
ImmutableShortCharHashMap.toList()
ImmutableShortCharSingletonMap.toList()
ImmutableByteCharEmptyMap.toSortedList()
ImmutableByteCharHashMap.toSortedList()
ImmutableByteCharSingletonMap.toSortedList()
ImmutableCharCharEmptyMap.toSortedList()
ImmutableCharCharHashMap.toSortedList()
ImmutableCharCharSingletonMap.toSortedList()
ImmutableDoubleCharEmptyMap.toSortedList()
ImmutableDoubleCharHashMap.toSortedList()
ImmutableDoubleCharSingletonMap.toSortedList()
ImmutableFloatCharEmptyMap.toSortedList()
ImmutableFloatCharHashMap.toSortedList()
ImmutableFloatCharSingletonMap.toSortedList()
ImmutableIntCharEmptyMap.toSortedList()
ImmutableIntCharHashMap.toSortedList()
ImmutableIntCharSingletonMap.toSortedList()
ImmutableLongCharEmptyMap.toSortedList()
ImmutableLongCharHashMap.toSortedList()
ImmutableLongCharSingletonMap.toSortedList()
ImmutableObjectCharEmptyMap.toSortedList()
ImmutableObjectCharHashMap.toSortedList()
ImmutableObjectCharSingletonMap.toSortedList()
ImmutableShortCharEmptyMap.toSortedList()
ImmutableShortCharHashMap.toSortedList()
ImmutableShortCharSingletonMap.toSortedList()
-
Uses of MutableCharList in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableCharListModifier and TypeMethodDescriptionAbstractMutableCharKeySet.toList()
AbstractMutableCharValuesMap.AbstractCharValuesCollection.toList()
CharBooleanHashMap.KeysView.toList()
ObjectCharHashMap.toList()
ObjectCharHashMap.ValuesCollection.toList()
ObjectCharHashMapWithHashingStrategy.toList()
ObjectCharHashMapWithHashingStrategy.ValuesCollection.toList()
SynchronizedByteCharMap.toList()
SynchronizedCharCharMap.toList()
SynchronizedDoubleCharMap.toList()
SynchronizedFloatCharMap.toList()
SynchronizedIntCharMap.toList()
SynchronizedLongCharMap.toList()
SynchronizedObjectCharMap.toList()
SynchronizedShortCharMap.toList()
UnmodifiableByteCharMap.toList()
UnmodifiableCharCharMap.toList()
UnmodifiableDoubleCharMap.toList()
UnmodifiableFloatCharMap.toList()
UnmodifiableIntCharMap.toList()
UnmodifiableLongCharMap.toList()
UnmodifiableObjectCharMap.toList()
UnmodifiableShortCharMap.toList()
AbstractMutableCharKeySet.toSortedList()
AbstractMutableCharValuesMap.AbstractCharValuesCollection.toSortedList()
ObjectCharHashMap.toSortedList()
ObjectCharHashMap.ValuesCollection.toSortedList()
ObjectCharHashMapWithHashingStrategy.toSortedList()
ObjectCharHashMapWithHashingStrategy.ValuesCollection.toSortedList()
SynchronizedByteCharMap.toSortedList()
SynchronizedCharCharMap.toSortedList()
SynchronizedDoubleCharMap.toSortedList()
SynchronizedFloatCharMap.toSortedList()
SynchronizedIntCharMap.toSortedList()
SynchronizedLongCharMap.toSortedList()
SynchronizedObjectCharMap.toSortedList()
SynchronizedShortCharMap.toSortedList()
UnmodifiableByteCharMap.toSortedList()
UnmodifiableCharCharMap.toSortedList()
UnmodifiableDoubleCharMap.toSortedList()
UnmodifiableFloatCharMap.toSortedList()
UnmodifiableIntCharMap.toSortedList()
UnmodifiableLongCharMap.toSortedList()
UnmodifiableObjectCharMap.toSortedList()
UnmodifiableShortCharMap.toSortedList()
-
Uses of MutableCharList in org.eclipse.collections.impl.map.ordered.mutable
Methods in org.eclipse.collections.impl.map.ordered.mutable that return MutableCharListModifier and TypeMethodDescriptionOrderedMapAdapter.collectChar
(CharFunction<? super V> charFunction) UnmodifiableMutableOrderedMap.collectChar
(CharFunction<? super V> charFunction) -
Uses of MutableCharList in org.eclipse.collections.impl.map.sorted.mutable
Methods in org.eclipse.collections.impl.map.sorted.mutable that return MutableCharListModifier and TypeMethodDescriptionAbstractMutableSortedMap.collectChar
(CharFunction<? super V> charFunction) SynchronizedSortedMap.collectChar
(CharFunction<? super V> charFunction) UnmodifiableTreeMap.collectChar
(CharFunction<? super V> charFunction) -
Uses of MutableCharList in org.eclipse.collections.impl.primitive
Methods in org.eclipse.collections.impl.primitive that return MutableCharListModifier and TypeMethodDescriptionAbstractCharIterable.toList()
SynchronizedCharIterable.toList()
AbstractCharIterable.toSortedList()
SynchronizedCharIterable.toSortedList()
-
Uses of MutableCharList in org.eclipse.collections.impl.set.immutable.primitive
Methods in org.eclipse.collections.impl.set.immutable.primitive that return MutableCharListModifier and TypeMethodDescriptionImmutableCharEmptySet.toList()
ImmutableCharSingletonSet.toList()
ImmutableCharEmptySet.toSortedList()
ImmutableCharSingletonSet.toSortedList()
-
Uses of MutableCharList in org.eclipse.collections.impl.set.sorted.mutable
Methods in org.eclipse.collections.impl.set.sorted.mutable that return MutableCharListModifier and TypeMethodDescriptionSortedSetAdapter.collectChar
(CharFunction<? super T> charFunction) SynchronizedSortedSet.collectChar
(CharFunction<? super T> charFunction) TreeSortedSet.collectChar
(CharFunction<? super T> charFunction) UnmodifiableSortedSet.collectChar
(CharFunction<? super T> charFunction) -
Uses of MutableCharList in org.eclipse.collections.impl.stack.immutable.primitive
Methods in org.eclipse.collections.impl.stack.immutable.primitive that return MutableCharListModifier and TypeMethodDescriptionImmutableCharEmptyStack.toList()
ImmutableCharSingletonStack.toList()
ImmutableCharArrayStack.toSortedList()
ImmutableCharEmptyStack.toSortedList()
ImmutableCharSingletonStack.toSortedList()
-
Uses of MutableCharList in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive that return MutableCharListModifier and TypeMethodDescriptionSynchronizedCharStack.toList()
UnmodifiableCharStack.toList()
CharArrayStack.toSortedList()
SynchronizedCharStack.toSortedList()
UnmodifiableCharStack.toSortedList()
-
Uses of MutableCharList in org.eclipse.collections.impl.stack.primitive
Methods in org.eclipse.collections.impl.stack.primitive that return MutableCharList -
Uses of MutableCharList in org.eclipse.collections.impl.string.immutable
Methods in org.eclipse.collections.impl.string.immutable that return MutableCharList -
Uses of MutableCharList in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility that return MutableCharListModifier and TypeMethodDescriptionstatic <T> MutableCharList
ArrayIterate.collectChar
(T[] objectArray, CharFunction<? super T> charFunction) static <T> MutableCharList
ArrayListIterate.collectChar
(ArrayList<T> list, CharFunction<? super T> charFunction) static <T> MutableCharList
ListIterate.collectChar
(List<T> list, CharFunction<? super T> charFunction) -
Uses of MutableCharList in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal that return MutableCharListModifier and TypeMethodDescriptionstatic <T> MutableCharList
RandomAccessListIterate.collectChar
(List<T> list, CharFunction<? super T> charFunction)