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 ofMaporg.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 theMutableListinterface.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 theMutableSortedMapinterface.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 MutableCharListCharIterable. toList()Converts the CharIterable to a new MutableCharList.MutableCharListCharIterable. toSortedList()default MutableCharListCharIterable. toSortedList(CharComparator comparator)Converts the collection to a MutableCharList implementation sorted using the provided comparator.default <T> MutableCharListCharIterable. toSortedListBy(CharToObjectFunction<T> function)Converts the collection to a MutableCharListImplementation sorted based on the natural order of the key returned byfunction.default <T> MutableCharListCharIterable. 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 byfunctionusing 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 MutableCharListMutableSortedBag. 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 MutableCharListMutableCharListFactory. empty()MutableCharListMutableCharListFactory. of()Same asMutableCharListFactory.empty().MutableCharListMutableCharListFactory. of(char... items)Same asMutableCharListFactory.with(char[]).MutableCharListMutableCharListFactory. ofAll(java.lang.Iterable<java.lang.Character> iterable)MutableCharListMutableCharListFactory. ofAll(CharIterable items)MutableCharListMutableCharListFactory. with()Same asMutableCharListFactory.empty().MutableCharListMutableCharListFactory. with(char... items)Creates a new list using the passeditemsargument as the backing store.MutableCharListMutableCharListFactory. withAll(java.lang.Iterable<java.lang.Character> iterable)MutableCharListMutableCharListFactory. withAll(CharIterable items)default MutableCharListMutableCharListFactory. withInitialCapacity(int capacity)Same asMutableCharListFactory.empty().default MutableCharListMutableCharListFactory. 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 MutableCharListMutableList. 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 MutableCharListMutableCharList. asSynchronized()MutableCharListMutableCharList. asUnmodifiable()MutableCharListMutableCharList. distinct()default MutableCharListMutableCharList. newEmpty()Creates a new empty mutable version of the same List type.MutableCharListMutableCharList. reject(CharPredicate predicate)default MutableCharListMutableCharList. rejectWithIndex(CharIntPredicate predicate)Returns a new MutableCharList excluding all elements with corresponding indexes matching the specified predicate.MutableCharListMutableCharList. reverseThis()MutableCharListMutableCharList. select(CharPredicate predicate)default MutableCharListMutableCharList. selectWithIndex(CharIntPredicate predicate)Returns a new MutableCharList including all elements with corresponding indexes matching the specified predicate.default MutableCharListMutableCharList. shuffleThis()Randomly permutes this list mutating its contents and returns the same list (this).default MutableCharListMutableCharList. shuffleThis(java.util.Random rnd)Randomly permutes this list mutating its contents and returns the same list (this).MutableCharListMutableCharList. sortThis()Sorts this list mutating its contents and returns the same mutable list (this).default MutableCharListMutableCharList. sortThis(CharComparator comparator)Sorts the internal data structure of this list and returns the list itself as a convenience.default <T> MutableCharListMutableCharList. sortThisBy(CharToObjectFunction<T> function)Sorts the internal data structure of this list based on the natural order of the key returned byfunction.default <T> MutableCharListMutableCharList. sortThisBy(CharToObjectFunction<T> function, java.util.Comparator<? super T> comparator)Sorts the internal data structure of this list based on the key returned byfunctionusing the providedcomparator.MutableCharListMutableCharList. subList(int fromIndex, int toIndex)default MutableCharListMutableCharList. tap(CharProcedure procedure)MutableCharListMutableCharList. toReversed()MutableCharListMutableCharList. with(char element)MutableCharListMutableCharList. withAll(CharIterable elements)MutableCharListMutableCharList. without(char element)MutableCharListMutableCharList. 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 MutableCharListMutableOrderedMap. 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 MutableCharListMutableSortedMap. 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 MutableCharListMutableSortedSet. 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 MutableCharListImmutableCharEmptyBag. toList()MutableCharListImmutableCharHashBag. toList()MutableCharListImmutableCharSingletonBag. toList()MutableCharListImmutableCharEmptyBag. toSortedList()MutableCharListImmutableCharHashBag. toSortedList()MutableCharListImmutableCharSingletonBag. 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 MutableCharListAbstractMutableSortedBag. collectChar(CharFunction<? super T> charFunction)MutableCharListSynchronizedSortedBag. collectChar(CharFunction<? super T> charFunction)MutableCharListUnmodifiableSortedBag. 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 MutableCharListAbstractSynchronizedCharCollection. toList()MutableCharListAbstractUnmodifiableCharCollection. toList()MutableCharListAbstractSynchronizedCharCollection. toSortedList()MutableCharListAbstractUnmodifiableCharCollection. 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 MutableCharListAbstractLazyCharIterable. toList()MutableCharListCollectCharIterable. toList()MutableCharListLazyCharIterableAdapter. toList()MutableCharListReverseCharIterable. toList()MutableCharListSelectCharIterable. toList()MutableCharListAbstractLazyCharIterable. toSortedList()MutableCharListLazyCharIterableAdapter. 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 MutableCharListImmutableCharArrayList. toList()MutableCharListImmutableCharEmptyList. toList()MutableCharListImmutableCharSingletonList. toList()MutableCharListImmutableCharArrayList. toSortedList()MutableCharListImmutableCharEmptyList. toSortedList()MutableCharListImmutableCharSingletonList. 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 MutableCharListMultiReaderFastList. collectChar(CharFunction<? super T> charFunction)MutableCharListMultiReaderFastList.UntouchableMutableList. collectChar(CharFunction<? super T> charFunction)MutableCharListSynchronizedMutableList. collectChar(CharFunction<? super T> charFunction)MutableCharListUnmodifiableMutableList. 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 classCharArrayListCharArrayList is similar to FastList, and is memory-optimized for char primitives.classSynchronizedCharListA synchronized view of aMutableCharList.classUnmodifiableCharListThis file was automatically generated from template file unmodifiablePrimitiveList.stg.Fields in org.eclipse.collections.impl.list.mutable.primitive declared as MutableCharList Modifier and Type Field Description private MutableCharListBoxedMutableCharList. delegateMethods in org.eclipse.collections.impl.list.mutable.primitive that return MutableCharList Modifier and Type Method Description MutableCharListCharArrayList. asSynchronized()MutableCharListSynchronizedCharList. asSynchronized()MutableCharListUnmodifiableCharList. asSynchronized()MutableCharListCharArrayList. asUnmodifiable()MutableCharListSynchronizedCharList. asUnmodifiable()MutableCharListUnmodifiableCharList. asUnmodifiable()MutableCharListCharArrayList. distinct()MutableCharListSynchronizedCharList. distinct()MutableCharListUnmodifiableCharList. distinct()MutableCharListMutableCharListFactoryImpl. empty()private MutableCharListSynchronizedCharList. getMutableCharList()private MutableCharListUnmodifiableCharList. getMutableCharList()MutableCharListSynchronizedCharList. newEmpty()MutableCharListUnmodifiableCharList. newEmpty()MutableCharListMutableCharListFactoryImpl. of()MutableCharListMutableCharListFactoryImpl. of(char... items)MutableCharListMutableCharListFactoryImpl. ofAll(java.lang.Iterable<java.lang.Character> iterable)MutableCharListMutableCharListFactoryImpl. ofAll(CharIterable items)MutableCharListSynchronizedCharList. reject(CharPredicate predicate)MutableCharListUnmodifiableCharList. reject(CharPredicate predicate)MutableCharListSynchronizedCharList. rejectWithIndex(CharIntPredicate predicate)Returns a new MutableCharList excluding all elements with corresponding indexes matching the specified predicate.MutableCharListUnmodifiableCharList. rejectWithIndex(CharIntPredicate predicate)Returns a new MutableCharList excluding all elements with corresponding indexes matching the specified predicate.MutableCharListSynchronizedCharList. reverseThis()MutableCharListUnmodifiableCharList. reverseThis()MutableCharListSynchronizedCharList. select(CharPredicate predicate)MutableCharListUnmodifiableCharList. select(CharPredicate predicate)MutableCharListSynchronizedCharList. selectWithIndex(CharIntPredicate predicate)Returns a new MutableCharList including all elements with corresponding indexes matching the specified predicate.MutableCharListUnmodifiableCharList. selectWithIndex(CharIntPredicate predicate)Returns a new MutableCharList including all elements with corresponding indexes matching the specified predicate.MutableCharListSynchronizedCharList. shuffleThis()MutableCharListSynchronizedCharList. shuffleThis(java.util.Random rnd)MutableCharListUnmodifiableCharList. shuffleThis()MutableCharListSynchronizedCharList. sortThis()MutableCharListSynchronizedCharList. sortThis(CharComparator comparator)MutableCharListUnmodifiableCharList. sortThis()<T> MutableCharListSynchronizedCharList. sortThisBy(CharToObjectFunction<T> function)<T> MutableCharListSynchronizedCharList. sortThisBy(CharToObjectFunction<T> function, java.util.Comparator<? super T> comparator)MutableCharListCharArrayList. subList(int fromIndex, int toIndex)MutableCharListSynchronizedCharList. subList(int fromIndex, int toIndex)MutableCharListUnmodifiableCharList. subList(int fromIndex, int toIndex)MutableCharListSynchronizedCharList. toReversed()MutableCharListUnmodifiableCharList. toReversed()MutableCharListMutableCharListFactoryImpl. with()MutableCharListMutableCharListFactoryImpl. with(char... items)Creates a new list using the passeditemsargument as the backing store.MutableCharListMutableCharListFactoryImpl. withAll(java.lang.Iterable<java.lang.Character> iterable)MutableCharListMutableCharListFactoryImpl. withAll(CharIterable items)MutableCharListMutableCharListFactoryImpl. withInitialCapacity(int capacity)Constructors in org.eclipse.collections.impl.list.mutable.primitive with parameters of type MutableCharList Constructor Description BoxedMutableCharList(MutableCharList delegate)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 MutableCharListImmutableByteCharEmptyMap. toList()MutableCharListImmutableByteCharHashMap. toList()MutableCharListImmutableByteCharSingletonMap. toList()MutableCharListImmutableCharCharEmptyMap. toList()MutableCharListImmutableCharCharHashMap. toList()MutableCharListImmutableCharCharSingletonMap. toList()MutableCharListImmutableDoubleCharEmptyMap. toList()MutableCharListImmutableDoubleCharHashMap. toList()MutableCharListImmutableDoubleCharSingletonMap. toList()MutableCharListImmutableFloatCharEmptyMap. toList()MutableCharListImmutableFloatCharHashMap. toList()MutableCharListImmutableFloatCharSingletonMap. toList()MutableCharListImmutableIntCharEmptyMap. toList()MutableCharListImmutableIntCharHashMap. toList()MutableCharListImmutableIntCharSingletonMap. toList()MutableCharListImmutableLongCharEmptyMap. toList()MutableCharListImmutableLongCharHashMap. toList()MutableCharListImmutableLongCharSingletonMap. toList()MutableCharListImmutableObjectCharEmptyMap. toList()MutableCharListImmutableObjectCharHashMap. toList()MutableCharListImmutableObjectCharSingletonMap. toList()MutableCharListImmutableShortCharEmptyMap. toList()MutableCharListImmutableShortCharHashMap. toList()MutableCharListImmutableShortCharSingletonMap. toList()MutableCharListImmutableByteCharEmptyMap. toSortedList()MutableCharListImmutableByteCharHashMap. toSortedList()MutableCharListImmutableByteCharSingletonMap. toSortedList()MutableCharListImmutableCharCharEmptyMap. toSortedList()MutableCharListImmutableCharCharHashMap. toSortedList()MutableCharListImmutableCharCharSingletonMap. toSortedList()MutableCharListImmutableDoubleCharEmptyMap. toSortedList()MutableCharListImmutableDoubleCharHashMap. toSortedList()MutableCharListImmutableDoubleCharSingletonMap. toSortedList()MutableCharListImmutableFloatCharEmptyMap. toSortedList()MutableCharListImmutableFloatCharHashMap. toSortedList()MutableCharListImmutableFloatCharSingletonMap. toSortedList()MutableCharListImmutableIntCharEmptyMap. toSortedList()MutableCharListImmutableIntCharHashMap. toSortedList()MutableCharListImmutableIntCharSingletonMap. toSortedList()MutableCharListImmutableLongCharEmptyMap. toSortedList()MutableCharListImmutableLongCharHashMap. toSortedList()MutableCharListImmutableLongCharSingletonMap. toSortedList()MutableCharListImmutableObjectCharEmptyMap. toSortedList()MutableCharListImmutableObjectCharHashMap. toSortedList()MutableCharListImmutableObjectCharSingletonMap. toSortedList()MutableCharListImmutableShortCharEmptyMap. toSortedList()MutableCharListImmutableShortCharHashMap. toSortedList()MutableCharListImmutableShortCharSingletonMap. 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 MutableCharListAbstractMutableCharKeySet. toList()MutableCharListAbstractMutableCharValuesMap.AbstractCharValuesCollection. toList()MutableCharListCharBooleanHashMap.KeysView. toList()MutableCharListObjectCharHashMap. toList()MutableCharListObjectCharHashMap.ValuesCollection. toList()MutableCharListObjectCharHashMapWithHashingStrategy. toList()MutableCharListObjectCharHashMapWithHashingStrategy.ValuesCollection. toList()MutableCharListSynchronizedByteCharMap. toList()MutableCharListSynchronizedCharCharMap. toList()MutableCharListSynchronizedDoubleCharMap. toList()MutableCharListSynchronizedFloatCharMap. toList()MutableCharListSynchronizedIntCharMap. toList()MutableCharListSynchronizedLongCharMap. toList()MutableCharListSynchronizedObjectCharMap. toList()MutableCharListSynchronizedShortCharMap. toList()MutableCharListUnmodifiableByteCharMap. toList()MutableCharListUnmodifiableCharCharMap. toList()MutableCharListUnmodifiableDoubleCharMap. toList()MutableCharListUnmodifiableFloatCharMap. toList()MutableCharListUnmodifiableIntCharMap. toList()MutableCharListUnmodifiableLongCharMap. toList()MutableCharListUnmodifiableObjectCharMap. toList()MutableCharListUnmodifiableShortCharMap. toList()MutableCharListAbstractMutableCharKeySet. toSortedList()MutableCharListAbstractMutableCharValuesMap.AbstractCharValuesCollection. toSortedList()MutableCharListObjectCharHashMap. toSortedList()MutableCharListObjectCharHashMap.ValuesCollection. toSortedList()MutableCharListObjectCharHashMapWithHashingStrategy. toSortedList()MutableCharListObjectCharHashMapWithHashingStrategy.ValuesCollection. toSortedList()MutableCharListSynchronizedByteCharMap. toSortedList()MutableCharListSynchronizedCharCharMap. toSortedList()MutableCharListSynchronizedDoubleCharMap. toSortedList()MutableCharListSynchronizedFloatCharMap. toSortedList()MutableCharListSynchronizedIntCharMap. toSortedList()MutableCharListSynchronizedLongCharMap. toSortedList()MutableCharListSynchronizedObjectCharMap. toSortedList()MutableCharListSynchronizedShortCharMap. toSortedList()MutableCharListUnmodifiableByteCharMap. toSortedList()MutableCharListUnmodifiableCharCharMap. toSortedList()MutableCharListUnmodifiableDoubleCharMap. toSortedList()MutableCharListUnmodifiableFloatCharMap. toSortedList()MutableCharListUnmodifiableIntCharMap. toSortedList()MutableCharListUnmodifiableLongCharMap. toSortedList()MutableCharListUnmodifiableObjectCharMap. toSortedList()MutableCharListUnmodifiableShortCharMap. 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 MutableCharListOrderedMapAdapter. collectChar(CharFunction<? super V> charFunction)MutableCharListUnmodifiableMutableOrderedMap. 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 MutableCharListAbstractMutableSortedMap. collectChar(CharFunction<? super V> charFunction)MutableCharListSynchronizedSortedMap. collectChar(CharFunction<? super V> charFunction)MutableCharListUnmodifiableTreeMap. 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 MutableCharListAbstractCharIterable. toList()MutableCharListSynchronizedCharIterable. toList()MutableCharListAbstractCharIterable. toSortedList()MutableCharListSynchronizedCharIterable. 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 MutableCharListImmutableCharEmptySet. toList()MutableCharListImmutableCharSingletonSet. toList()MutableCharListImmutableCharEmptySet. toSortedList()MutableCharListImmutableCharSingletonSet. 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 MutableCharListSortedSetAdapter. collectChar(CharFunction<? super T> charFunction)MutableCharListSynchronizedSortedSet. collectChar(CharFunction<? super T> charFunction)MutableCharListTreeSortedSet. collectChar(CharFunction<? super T> charFunction)MutableCharListUnmodifiableSortedSet. 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 MutableCharListImmutableCharEmptyStack. toList()MutableCharListImmutableCharSingletonStack. toList()MutableCharListImmutableCharArrayStack. toSortedList()MutableCharListImmutableCharEmptyStack. toSortedList()MutableCharListImmutableCharSingletonStack. 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 MutableCharListSynchronizedCharStack. toList()MutableCharListUnmodifiableCharStack. toList()MutableCharListCharArrayStack. toSortedList()MutableCharListSynchronizedCharStack. toSortedList()MutableCharListUnmodifiableCharStack. 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 MutableCharListAbstractCharStack. 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 MutableCharListCharAdapter. 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> MutableCharListArrayIterate. collectChar(T[] objectArray, CharFunction<? super T> charFunction)static <T> MutableCharListArrayListIterate. collectChar(java.util.ArrayList<T> list, CharFunction<? super T> charFunction)static <T> MutableCharListListIterate. 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> MutableCharListRandomAccessListIterate. collectChar(java.util.List<T> list, CharFunction<? super T> charFunction)
-