Uses of Interface
org.eclipse.collections.api.list.primitive.CharList
-
Packages that use CharList Package Description org.eclipse.collections.api.bag.sorted This package contains interfaces for SortedBag API.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.api.stack.primitive This package contains mutable and immutable primitive stack API. -
-
Uses of CharList in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted that return CharList Modifier and Type Method Description CharListSortedBag. collectChar(CharFunction<? super T> charFunction) -
Uses of CharList in org.eclipse.collections.api.list
Methods in org.eclipse.collections.api.list that return CharList Modifier and Type Method Description CharListListIterable. collectChar(CharFunction<? super T> charFunction) -
Uses of CharList in org.eclipse.collections.api.list.primitive
Subinterfaces of CharList in org.eclipse.collections.api.list.primitive Modifier and Type Interface Description interfaceImmutableCharListThis file was automatically generated from template file immutablePrimitiveList.stg.interfaceMutableCharListThis file was automatically generated from template file mutablePrimitiveList.stg.Methods in org.eclipse.collections.api.list.primitive that return CharList Modifier and Type Method Description CharListCharList. distinct()CharListCharList. reject(CharPredicate predicate)default CharListCharList. rejectWithIndex(CharIntPredicate predicate)Returns a new CharList excluding all elements with corresponding indexes matching the specified predicate.CharListCharList. select(CharPredicate predicate)default CharListCharList. selectWithIndex(CharIntPredicate predicate)Returns a new CharList including all elements with corresponding indexes matching the specified predicate.CharListCharList. subList(int fromIndex, int toIndex)default CharListCharList. tap(CharProcedure procedure)CharListCharList. toReversed()Methods in org.eclipse.collections.api.list.primitive with parameters of type CharList Modifier and Type Method Description longCharList. dotProduct(CharList list)default voidCharList. forEachInBoth(CharList other, CharCharProcedure procedure)This method iterates over two CharList instances of the same size together using the specified CharCharProcedure. -
Uses of CharList in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return CharList Modifier and Type Method Description CharListOrderedMap. collectChar(CharFunction<? super V> charFunction) -
Uses of CharList in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted that return CharList Modifier and Type Method Description CharListSortedMapIterable. collectChar(CharFunction<? super V> charFunction) -
Uses of CharList in org.eclipse.collections.api.set.sorted
Methods in org.eclipse.collections.api.set.sorted that return CharList Modifier and Type Method Description CharListSortedSetIterable. collectChar(CharFunction<? super T> charFunction) -
Uses of CharList in org.eclipse.collections.api.stack.primitive
Methods in org.eclipse.collections.api.stack.primitive that return CharList Modifier and Type Method Description CharListCharStack. peek(int count)Returns CharList of the number of elements specified by the count, beginning with the top of the stack.CharListMutableCharStack. pop(int count)Removes and returns a CharList of the number of elements specified by the count, beginning with the top of the stack.
-