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
MapThis package contains mutable and immutable sorted map interfaces.
This package contains interfaces for sorted set API.
-
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 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, 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 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 passeditemsargument as the backing store.MutableCharListFactory.withAll(CharIterable items) default MutableCharListMutableCharListFactory.withInitialCapacity(int capacity) Same asMutableCharListFactory.empty(). but takes in an initial capacitydefault 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 MutableCharListModifier and TypeMethodDescriptiondefault 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 MutableCharListModifier and TypeMethodDescriptionMutableCharList.asSynchronized()MutableCharList.asUnmodifiable()MutableCharList.distinct()default MutableCharListMutableCharList.newEmpty()Creates a new empty mutable version of the same List type.MutableCharList.reject(CharPredicate predicate) default MutableCharListMutableCharList.rejectWithIndex(CharIntPredicate predicate) Returns a new MutableCharList excluding all elements with corresponding indexes matching the specified predicate.MutableCharList.reverseThis()MutableCharList.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(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 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, Comparator<? super T> comparator) Sorts the internal data structure of this list based on the key returned byfunctionusing the providedcomparator.MutableCharList.subList(int fromIndex, int toIndex) default MutableCharListMutableCharList.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)