Uses of Interface
org.eclipse.collections.api.collection.primitive.MutableCharCollection
-
Packages that use MutableCharCollection Package Description org.eclipse.collections.api This package contains interfaces for Eclipse Collections API.org.eclipse.collections.api.bag.primitive This package contains API for Primitive Bags with Mutable and Immutable variants.org.eclipse.collections.api.collection org.eclipse.collections.api.collection.primitive This package contains mutable and immutable primitive collection API.org.eclipse.collections.api.list.primitive This package contains mutable and immutable primitive list API.org.eclipse.collections.api.map.primitive This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.org.eclipse.collections.api.ordered.primitive org.eclipse.collections.api.set.primitive This package contains API for mutable and immutable primitive sets. -
-
Uses of MutableCharCollection in org.eclipse.collections.api
Methods in org.eclipse.collections.api with type parameters of type MutableCharCollection Modifier and Type Method Description default <R extends MutableCharCollection>
RBooleanIterable. collectChar(BooleanToCharFunction function, R target)Returns the targetMutableCharCollectionwith the results of applying the specified function on each element of the source collection.default <R extends MutableCharCollection>
RByteIterable. collectChar(ByteToCharFunction function, R target)Returns the targetMutableCharCollectionwith the results of applying the specified function on each element of the source collection.default <R extends MutableCharCollection>
RCharIterable. collectChar(CharToCharFunction function, R target)Returns the targetMutableCharCollectionwith the results of applying the specified function on each element of the source collection.default <R extends MutableCharCollection>
RDoubleIterable. collectChar(DoubleToCharFunction function, R target)Returns the targetMutableCharCollectionwith the results of applying the specified function on each element of the source collection.default <R extends MutableCharCollection>
RFloatIterable. collectChar(FloatToCharFunction function, R target)Returns the targetMutableCharCollectionwith the results of applying the specified function on each element of the source collection.default <R extends MutableCharCollection>
RIntIterable. collectChar(IntToCharFunction function, R target)Returns the targetMutableCharCollectionwith the results of applying the specified function on each element of the source collection.default <R extends MutableCharCollection>
RLongIterable. collectChar(LongToCharFunction function, R target)Returns the targetMutableCharCollectionwith the results of applying the specified function on each element of the source collection.default <R extends MutableCharCollection>
RRichIterable. collectChar(CharFunction<? super T> charFunction, R target)Same asRichIterable.collectChar(CharFunction), except that the results are gathered into the specifiedtargetcollection.default <R extends MutableCharCollection>
RShortIterable. collectChar(ShortToCharFunction function, R target)Returns the targetMutableCharCollectionwith the results of applying the specified function on each element of the source collection.default <R extends MutableCharCollection>
RRichIterable. flatCollectChar(Function<? super T,? extends CharIterable> function, R target)Same as flatCollect, only the results are collected into the target collection.default <R extends MutableCharCollection>
RCharIterable. reject(CharPredicate predicate, R target)Same asCharIterable.reject(CharPredicate), only the results are added to the target MutableCharCollection.default <R extends MutableCharCollection>
RCharIterable. select(CharPredicate predicate, R target)Same asCharIterable.select(CharPredicate), only the results are added to the target MutableCharCollection. -
Uses of MutableCharCollection in org.eclipse.collections.api.bag.primitive
Subinterfaces of MutableCharCollection in org.eclipse.collections.api.bag.primitive Modifier and Type Interface Description interfaceMutableCharBagThis file was automatically generated from template file mutablePrimitiveBag.stg. -
Uses of MutableCharCollection in org.eclipse.collections.api.collection
Methods in org.eclipse.collections.api.collection that return MutableCharCollection Modifier and Type Method Description default MutableCharCollectionMutableCollection. collectChar(CharFunction<? super T> charFunction)Returns a new primitivechariterable with the results of applying the specified function on each element of the source collection. -
Uses of MutableCharCollection in org.eclipse.collections.api.collection.primitive
Methods in org.eclipse.collections.api.collection.primitive that return MutableCharCollection Modifier and Type Method Description MutableCharCollectionMutableCharCollection. asSynchronized()MutableCharCollectionMutableCharCollection. asUnmodifiable()default MutableCharCollectionMutableCharCollection. newEmpty()Creates a new empty mutable version of the same collection type.MutableCharCollectionMutableCharCollection. reject(CharPredicate predicate)MutableCharCollectionMutableCharCollection. select(CharPredicate predicate)default MutableCharCollectionMutableCharCollection. tap(CharProcedure procedure)MutableCharCollectionMutableCharCollection. with(char element)MutableCharCollectionMutableCharCollection. withAll(CharIterable elements)MutableCharCollectionMutableCharCollection. without(char element)MutableCharCollectionMutableCharCollection. withoutAll(CharIterable elements) -
Uses of MutableCharCollection in org.eclipse.collections.api.list.primitive
Subinterfaces of MutableCharCollection in org.eclipse.collections.api.list.primitive Modifier and Type Interface Description interfaceMutableCharListThis file was automatically generated from template file mutablePrimitiveList.stg. -
Uses of MutableCharCollection in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableCharCollection Modifier and Type Method Description MutableCharCollectionMutableObjectCharMap. reject(CharPredicate predicate)MutableCharCollectionMutableObjectCharMap. select(CharPredicate predicate)MutableCharCollectionCharValuesMap. values()Returns the values in this map as a separate collection.MutableCharCollectionObjectCharMap. values()Returns the values in this map as a separate collection. -
Uses of MutableCharCollection in org.eclipse.collections.api.ordered.primitive
Methods in org.eclipse.collections.api.ordered.primitive with type parameters of type MutableCharCollection Modifier and Type Method Description default <R extends MutableCharCollection>
ROrderedCharIterable. rejectWithIndex(CharIntPredicate predicate, R target)Returns a new MutableCharCollection excluding all elements with corresponding indexes matching the specified predicate.default <R extends MutableCharCollection>
ROrderedCharIterable. selectWithIndex(CharIntPredicate predicate, R target)Returns a new MutableCharCollection including all elements with corresponding indexes matching the specified predicate. -
Uses of MutableCharCollection in org.eclipse.collections.api.set.primitive
Subinterfaces of MutableCharCollection in org.eclipse.collections.api.set.primitive Modifier and Type Interface Description interfaceMutableCharSetThis file was automatically generated from template file mutablePrimitiveSet.stg.
-