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. -
-
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, 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(Iterable<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(Iterable<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(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, 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)
-