Uses of Interface
org.eclipse.collections.api.list.primitive.MutableCharList
-
Packages that use MutableCharList Package Description org.eclipse.collections.api This package contains interfaces for Eclipse Collections API.org.eclipse.collections.api.bag.sorted This package contains interfaces for SortedBag API.org.eclipse.collections.api.factory.list.primitive This package contains factory API for creating immutable primitive list instances.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.impl.bag.immutable.primitive This package contains implementations of the immutable primitive bag interfaces.org.eclipse.collections.impl.bag.sorted.mutable This package contains implementations ofMutableSortedBag
.org.eclipse.collections.impl.collection.mutable.primitive This package contains implementations of the mutable primitive collection interfaces.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 This package contains implementations of theMutableList
interface.org.eclipse.collections.impl.list.mutable.primitive This package contains implementations of the mutable primitive list interfaces.org.eclipse.collections.impl.map.immutable.primitive This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.mutable.primitive This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.ordered.mutable org.eclipse.collections.impl.map.sorted.mutable This package contains implementations of theMutableSortedMap
interface.org.eclipse.collections.impl.primitive org.eclipse.collections.impl.set.immutable.primitive This package contains implementations of the immutable primitive set interfaces.org.eclipse.collections.impl.set.sorted.mutable This package contains implementations ofMutableSortedSet
.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 org.eclipse.collections.impl.utility This package contains static utilities that provide iteration pattern implementations which work with JCF collections.org.eclipse.collections.impl.utility.internal 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 MutableCharList Modifier and Type Method Description MutableCharList
CharIterable. toList()
Converts the CharIterable to a new MutableCharList.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, java.util.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 MutableCharList Modifier and Type Method Description MutableCharList
MutableSortedBag. 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 MutableCharList Modifier and Type Method Description MutableCharList
MutableCharListFactory. empty()
MutableCharList
MutableCharListFactory. of()
Same asMutableCharListFactory.empty()
.MutableCharList
MutableCharListFactory. of(char... items)
Same asMutableCharListFactory.with(char[])
.MutableCharList
MutableCharListFactory. ofAll(java.lang.Iterable<java.lang.Character> iterable)
MutableCharList
MutableCharListFactory. ofAll(CharIterable items)
MutableCharList
MutableCharListFactory. with()
Same asMutableCharListFactory.empty()
.MutableCharList
MutableCharListFactory. with(char... items)
Creates a new list using the passeditems
argument as the backing store.MutableCharList
MutableCharListFactory. withAll(java.lang.Iterable<java.lang.Character> iterable)
MutableCharList
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 MutableCharList Modifier and Type Method Description default 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 MutableCharList Modifier and Type Method Description MutableCharList
MutableCharList. asSynchronized()
MutableCharList
MutableCharList. asUnmodifiable()
MutableCharList
MutableCharList. distinct()
default MutableCharList
MutableCharList. newEmpty()
Creates a new empty mutable version of the same List type.MutableCharList
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
MutableCharList. reverseThis()
MutableCharList
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(java.util.Random rnd)
Randomly permutes this list mutating its contents and returns the same list (this).MutableCharList
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, java.util.Comparator<? super T> comparator)
Sorts the internal data structure of this list based on the key returned byfunction
using the providedcomparator
.MutableCharList
MutableCharList. subList(int fromIndex, int toIndex)
default MutableCharList
MutableCharList. tap(CharProcedure procedure)
MutableCharList
MutableCharList. toReversed()
MutableCharList
MutableCharList. with(char element)
MutableCharList
MutableCharList. withAll(CharIterable elements)
MutableCharList
MutableCharList. without(char element)
MutableCharList
MutableCharList. withoutAll(CharIterable elements)
-
Uses of MutableCharList in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return MutableCharList Modifier and Type Method Description MutableCharList
MutableOrderedMap. 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 MutableCharList Modifier and Type Method Description MutableCharList
MutableSortedMap. 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 MutableCharList Modifier and Type Method Description MutableCharList
MutableSortedSet. 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 MutableCharList Modifier and Type Method Description MutableCharList
ImmutableCharEmptyBag. toList()
MutableCharList
ImmutableCharHashBag. toList()
MutableCharList
ImmutableCharSingletonBag. toList()
MutableCharList
ImmutableCharEmptyBag. toSortedList()
MutableCharList
ImmutableCharHashBag. toSortedList()
MutableCharList
ImmutableCharSingletonBag. toSortedList()
-
Uses of MutableCharList in org.eclipse.collections.impl.bag.sorted.mutable
Methods in org.eclipse.collections.impl.bag.sorted.mutable that return MutableCharList Modifier and Type Method Description MutableCharList
AbstractMutableSortedBag. collectChar(CharFunction<? super T> charFunction)
MutableCharList
SynchronizedSortedBag. collectChar(CharFunction<? super T> charFunction)
MutableCharList
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 MutableCharList Modifier and Type Method Description MutableCharList
AbstractSynchronizedCharCollection. toList()
MutableCharList
AbstractUnmodifiableCharCollection. toList()
MutableCharList
AbstractSynchronizedCharCollection. toSortedList()
MutableCharList
AbstractUnmodifiableCharCollection. toSortedList()
-
Uses of MutableCharList in org.eclipse.collections.impl.lazy.primitive
Methods in org.eclipse.collections.impl.lazy.primitive that return MutableCharList Modifier and Type Method Description MutableCharList
AbstractLazyCharIterable. toList()
MutableCharList
CollectCharIterable. toList()
MutableCharList
LazyCharIterableAdapter. toList()
MutableCharList
ReverseCharIterable. toList()
MutableCharList
SelectCharIterable. toList()
MutableCharList
AbstractLazyCharIterable. toSortedList()
MutableCharList
LazyCharIterableAdapter. toSortedList()
-
Uses of MutableCharList in org.eclipse.collections.impl.list.immutable.primitive
Methods in org.eclipse.collections.impl.list.immutable.primitive that return MutableCharList Modifier and Type Method Description MutableCharList
ImmutableCharArrayList. toList()
MutableCharList
ImmutableCharEmptyList. toList()
MutableCharList
ImmutableCharSingletonList. toList()
MutableCharList
ImmutableCharArrayList. toSortedList()
MutableCharList
ImmutableCharEmptyList. toSortedList()
MutableCharList
ImmutableCharSingletonList. toSortedList()
-
Uses of MutableCharList in org.eclipse.collections.impl.list.mutable
Methods in org.eclipse.collections.impl.list.mutable that return MutableCharList Modifier and Type Method Description MutableCharList
MultiReaderFastList. collectChar(CharFunction<? super T> charFunction)
MutableCharList
MultiReaderFastList.UntouchableMutableList. collectChar(CharFunction<? super T> charFunction)
MutableCharList
SynchronizedMutableList. collectChar(CharFunction<? super T> charFunction)
MutableCharList
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 MutableCharList 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 that return MutableCharList Modifier and Type Method Description MutableCharList
CharArrayList. asSynchronized()
MutableCharList
SynchronizedCharList. asSynchronized()
MutableCharList
UnmodifiableCharList. asSynchronized()
MutableCharList
CharArrayList. asUnmodifiable()
MutableCharList
SynchronizedCharList. asUnmodifiable()
MutableCharList
UnmodifiableCharList. asUnmodifiable()
MutableCharList
CharArrayList. distinct()
MutableCharList
SynchronizedCharList. distinct()
MutableCharList
UnmodifiableCharList. distinct()
MutableCharList
MutableCharListFactoryImpl. empty()
private MutableCharList
SynchronizedCharList. getMutableCharList()
private MutableCharList
UnmodifiableCharList. getMutableCharList()
MutableCharList
SynchronizedCharList. newEmpty()
MutableCharList
UnmodifiableCharList. newEmpty()
MutableCharList
MutableCharListFactoryImpl. of()
MutableCharList
MutableCharListFactoryImpl. of(char... items)
MutableCharList
MutableCharListFactoryImpl. ofAll(java.lang.Iterable<java.lang.Character> iterable)
MutableCharList
MutableCharListFactoryImpl. ofAll(CharIterable items)
MutableCharList
SynchronizedCharList. reject(CharPredicate predicate)
MutableCharList
UnmodifiableCharList. reject(CharPredicate predicate)
MutableCharList
SynchronizedCharList. rejectWithIndex(CharIntPredicate predicate)
Returns a new MutableCharList excluding all elements with corresponding indexes matching the specified predicate.MutableCharList
UnmodifiableCharList. rejectWithIndex(CharIntPredicate predicate)
Returns a new MutableCharList excluding all elements with corresponding indexes matching the specified predicate.MutableCharList
SynchronizedCharList. reverseThis()
MutableCharList
UnmodifiableCharList. reverseThis()
MutableCharList
SynchronizedCharList. select(CharPredicate predicate)
MutableCharList
UnmodifiableCharList. select(CharPredicate predicate)
MutableCharList
SynchronizedCharList. selectWithIndex(CharIntPredicate predicate)
Returns a new MutableCharList including all elements with corresponding indexes matching the specified predicate.MutableCharList
UnmodifiableCharList. selectWithIndex(CharIntPredicate predicate)
Returns a new MutableCharList including all elements with corresponding indexes matching the specified predicate.MutableCharList
SynchronizedCharList. shuffleThis()
MutableCharList
SynchronizedCharList. shuffleThis(java.util.Random rnd)
MutableCharList
UnmodifiableCharList. shuffleThis()
MutableCharList
SynchronizedCharList. sortThis()
MutableCharList
SynchronizedCharList. sortThis(CharComparator comparator)
MutableCharList
UnmodifiableCharList. sortThis()
<T> MutableCharList
SynchronizedCharList. sortThisBy(CharToObjectFunction<T> function)
<T> MutableCharList
SynchronizedCharList. sortThisBy(CharToObjectFunction<T> function, java.util.Comparator<? super T> comparator)
MutableCharList
CharArrayList. subList(int fromIndex, int toIndex)
MutableCharList
SynchronizedCharList. subList(int fromIndex, int toIndex)
MutableCharList
UnmodifiableCharList. subList(int fromIndex, int toIndex)
MutableCharList
SynchronizedCharList. toReversed()
MutableCharList
UnmodifiableCharList. toReversed()
MutableCharList
MutableCharListFactoryImpl. with()
MutableCharList
MutableCharListFactoryImpl. with(char... items)
Creates a new list using the passeditems
argument as the backing store.MutableCharList
MutableCharListFactoryImpl. withAll(java.lang.Iterable<java.lang.Character> iterable)
MutableCharList
MutableCharListFactoryImpl. withAll(CharIterable items)
MutableCharList
MutableCharListFactoryImpl. withInitialCapacity(int capacity)
Constructors in org.eclipse.collections.impl.list.mutable.primitive with parameters of type MutableCharList Constructor Description SynchronizedCharList(MutableCharList list)
SynchronizedCharList(MutableCharList list, java.lang.Object newLock)
UnmodifiableCharList(MutableCharList list)
-
Uses of MutableCharList in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive that return MutableCharList Modifier and Type Method Description MutableCharList
ImmutableByteCharEmptyMap. toList()
MutableCharList
ImmutableByteCharHashMap. toList()
MutableCharList
ImmutableByteCharSingletonMap. toList()
MutableCharList
ImmutableCharCharEmptyMap. toList()
MutableCharList
ImmutableCharCharHashMap. toList()
MutableCharList
ImmutableCharCharSingletonMap. toList()
MutableCharList
ImmutableDoubleCharEmptyMap. toList()
MutableCharList
ImmutableDoubleCharHashMap. toList()
MutableCharList
ImmutableDoubleCharSingletonMap. toList()
MutableCharList
ImmutableFloatCharEmptyMap. toList()
MutableCharList
ImmutableFloatCharHashMap. toList()
MutableCharList
ImmutableFloatCharSingletonMap. toList()
MutableCharList
ImmutableIntCharEmptyMap. toList()
MutableCharList
ImmutableIntCharHashMap. toList()
MutableCharList
ImmutableIntCharSingletonMap. toList()
MutableCharList
ImmutableLongCharEmptyMap. toList()
MutableCharList
ImmutableLongCharHashMap. toList()
MutableCharList
ImmutableLongCharSingletonMap. toList()
MutableCharList
ImmutableObjectCharEmptyMap. toList()
MutableCharList
ImmutableObjectCharHashMap. toList()
MutableCharList
ImmutableObjectCharSingletonMap. toList()
MutableCharList
ImmutableShortCharEmptyMap. toList()
MutableCharList
ImmutableShortCharHashMap. toList()
MutableCharList
ImmutableShortCharSingletonMap. toList()
MutableCharList
ImmutableByteCharEmptyMap. toSortedList()
MutableCharList
ImmutableByteCharHashMap. toSortedList()
MutableCharList
ImmutableByteCharSingletonMap. toSortedList()
MutableCharList
ImmutableCharCharEmptyMap. toSortedList()
MutableCharList
ImmutableCharCharHashMap. toSortedList()
MutableCharList
ImmutableCharCharSingletonMap. toSortedList()
MutableCharList
ImmutableDoubleCharEmptyMap. toSortedList()
MutableCharList
ImmutableDoubleCharHashMap. toSortedList()
MutableCharList
ImmutableDoubleCharSingletonMap. toSortedList()
MutableCharList
ImmutableFloatCharEmptyMap. toSortedList()
MutableCharList
ImmutableFloatCharHashMap. toSortedList()
MutableCharList
ImmutableFloatCharSingletonMap. toSortedList()
MutableCharList
ImmutableIntCharEmptyMap. toSortedList()
MutableCharList
ImmutableIntCharHashMap. toSortedList()
MutableCharList
ImmutableIntCharSingletonMap. toSortedList()
MutableCharList
ImmutableLongCharEmptyMap. toSortedList()
MutableCharList
ImmutableLongCharHashMap. toSortedList()
MutableCharList
ImmutableLongCharSingletonMap. toSortedList()
MutableCharList
ImmutableObjectCharEmptyMap. toSortedList()
MutableCharList
ImmutableObjectCharHashMap. toSortedList()
MutableCharList
ImmutableObjectCharSingletonMap. toSortedList()
MutableCharList
ImmutableShortCharEmptyMap. toSortedList()
MutableCharList
ImmutableShortCharHashMap. toSortedList()
MutableCharList
ImmutableShortCharSingletonMap. toSortedList()
-
Uses of MutableCharList in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableCharList Modifier and Type Method Description MutableCharList
AbstractMutableCharKeySet. toList()
MutableCharList
AbstractMutableCharValuesMap.AbstractCharValuesCollection. toList()
MutableCharList
CharBooleanHashMap.KeysView. toList()
MutableCharList
ObjectCharHashMap. toList()
MutableCharList
ObjectCharHashMap.ValuesCollection. toList()
MutableCharList
ObjectCharHashMapWithHashingStrategy. toList()
MutableCharList
ObjectCharHashMapWithHashingStrategy.ValuesCollection. toList()
MutableCharList
SynchronizedByteCharMap. toList()
MutableCharList
SynchronizedCharCharMap. toList()
MutableCharList
SynchronizedDoubleCharMap. toList()
MutableCharList
SynchronizedFloatCharMap. toList()
MutableCharList
SynchronizedIntCharMap. toList()
MutableCharList
SynchronizedLongCharMap. toList()
MutableCharList
SynchronizedObjectCharMap. toList()
MutableCharList
SynchronizedShortCharMap. toList()
MutableCharList
UnmodifiableByteCharMap. toList()
MutableCharList
UnmodifiableCharCharMap. toList()
MutableCharList
UnmodifiableDoubleCharMap. toList()
MutableCharList
UnmodifiableFloatCharMap. toList()
MutableCharList
UnmodifiableIntCharMap. toList()
MutableCharList
UnmodifiableLongCharMap. toList()
MutableCharList
UnmodifiableObjectCharMap. toList()
MutableCharList
UnmodifiableShortCharMap. toList()
MutableCharList
AbstractMutableCharKeySet. toSortedList()
MutableCharList
AbstractMutableCharValuesMap.AbstractCharValuesCollection. toSortedList()
MutableCharList
ObjectCharHashMap. toSortedList()
MutableCharList
ObjectCharHashMap.ValuesCollection. toSortedList()
MutableCharList
ObjectCharHashMapWithHashingStrategy. toSortedList()
MutableCharList
ObjectCharHashMapWithHashingStrategy.ValuesCollection. toSortedList()
MutableCharList
SynchronizedByteCharMap. toSortedList()
MutableCharList
SynchronizedCharCharMap. toSortedList()
MutableCharList
SynchronizedDoubleCharMap. toSortedList()
MutableCharList
SynchronizedFloatCharMap. toSortedList()
MutableCharList
SynchronizedIntCharMap. toSortedList()
MutableCharList
SynchronizedLongCharMap. toSortedList()
MutableCharList
SynchronizedObjectCharMap. toSortedList()
MutableCharList
SynchronizedShortCharMap. toSortedList()
MutableCharList
UnmodifiableByteCharMap. toSortedList()
MutableCharList
UnmodifiableCharCharMap. toSortedList()
MutableCharList
UnmodifiableDoubleCharMap. toSortedList()
MutableCharList
UnmodifiableFloatCharMap. toSortedList()
MutableCharList
UnmodifiableIntCharMap. toSortedList()
MutableCharList
UnmodifiableLongCharMap. toSortedList()
MutableCharList
UnmodifiableObjectCharMap. toSortedList()
MutableCharList
UnmodifiableShortCharMap. toSortedList()
-
Uses of MutableCharList in org.eclipse.collections.impl.map.ordered.mutable
Methods in org.eclipse.collections.impl.map.ordered.mutable that return MutableCharList Modifier and Type Method Description MutableCharList
OrderedMapAdapter. collectChar(CharFunction<? super V> charFunction)
MutableCharList
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 MutableCharList Modifier and Type Method Description MutableCharList
AbstractMutableSortedMap. collectChar(CharFunction<? super V> charFunction)
MutableCharList
SynchronizedSortedMap. collectChar(CharFunction<? super V> charFunction)
MutableCharList
UnmodifiableTreeMap. collectChar(CharFunction<? super V> charFunction)
-
Uses of MutableCharList in org.eclipse.collections.impl.primitive
Methods in org.eclipse.collections.impl.primitive that return MutableCharList Modifier and Type Method Description MutableCharList
AbstractCharIterable. toList()
MutableCharList
SynchronizedCharIterable. toList()
MutableCharList
AbstractCharIterable. toSortedList()
MutableCharList
SynchronizedCharIterable. toSortedList()
-
Uses of MutableCharList in org.eclipse.collections.impl.set.immutable.primitive
Methods in org.eclipse.collections.impl.set.immutable.primitive that return MutableCharList Modifier and Type Method Description MutableCharList
ImmutableCharEmptySet. toList()
MutableCharList
ImmutableCharSingletonSet. toList()
MutableCharList
ImmutableCharEmptySet. toSortedList()
MutableCharList
ImmutableCharSingletonSet. toSortedList()
-
Uses of MutableCharList in org.eclipse.collections.impl.set.sorted.mutable
Methods in org.eclipse.collections.impl.set.sorted.mutable that return MutableCharList Modifier and Type Method Description MutableCharList
SortedSetAdapter. collectChar(CharFunction<? super T> charFunction)
MutableCharList
SynchronizedSortedSet. collectChar(CharFunction<? super T> charFunction)
MutableCharList
TreeSortedSet. collectChar(CharFunction<? super T> charFunction)
MutableCharList
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 MutableCharList Modifier and Type Method Description MutableCharList
ImmutableCharEmptyStack. toList()
MutableCharList
ImmutableCharSingletonStack. toList()
MutableCharList
ImmutableCharArrayStack. toSortedList()
MutableCharList
ImmutableCharEmptyStack. toSortedList()
MutableCharList
ImmutableCharSingletonStack. toSortedList()
-
Uses of MutableCharList in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive that return MutableCharList Modifier and Type Method Description MutableCharList
SynchronizedCharStack. toList()
MutableCharList
UnmodifiableCharStack. toList()
MutableCharList
CharArrayStack. toSortedList()
MutableCharList
SynchronizedCharStack. toSortedList()
MutableCharList
UnmodifiableCharStack. toSortedList()
-
Uses of MutableCharList in org.eclipse.collections.impl.stack.primitive
Methods in org.eclipse.collections.impl.stack.primitive that return MutableCharList Modifier and Type Method Description MutableCharList
AbstractCharStack. toList()
-
Uses of MutableCharList in org.eclipse.collections.impl.string.immutable
Methods in org.eclipse.collections.impl.string.immutable that return MutableCharList Modifier and Type Method Description MutableCharList
CharAdapter. toList()
-
Uses of MutableCharList in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility that return MutableCharList Modifier and Type Method Description static <T> MutableCharList
ArrayIterate. collectChar(T[] objectArray, CharFunction<? super T> charFunction)
static <T> MutableCharList
ArrayListIterate. collectChar(java.util.ArrayList<T> list, CharFunction<? super T> charFunction)
static <T> MutableCharList
ListIterate. collectChar(java.util.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 MutableCharList Modifier and Type Method Description static <T> MutableCharList
RandomAccessListIterate. collectChar(java.util.List<T> list, CharFunction<? super T> charFunction)
-