Uses of Interface
org.eclipse.collections.api.collection.primitive.MutableCharCollection
Packages that use MutableCharCollection
Package
Description
This package contains interfaces for Eclipse Collections API.
This package contains API for Primitive Bags with Mutable and Immutable variants.
This package contains mutable and immutable primitive collection API.
This package contains mutable and immutable primitive list API.
This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
This package contains API for mutable and immutable primitive sets.
This package contains implementations for Eclipse Collections API.
This package contains implementations of the mutable primitive bag interfaces.
This package contains implementations of the
MutableBiMap interface.This package contains implementations of primitive procedures.
This package contains implementations of the
MutableCollection interface.This package contains implementations of the mutable primitive collection interfaces.
This package contains implementations of the lazy primitive iterator interfaces.
This package contains implementations of immutable primitive list interfaces and immutable primitive list factory interfaces.
This package contains implementations of the
MutableList interface.This package contains implementations of the mutable primitive list interfaces.
This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the
MutableMap interface.This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the
MutableSortedMap interface.This package contains implementations of the mutable primitive set interfaces.
This package contains implementations of the
ImmutableStack interface.This package contains implementations of the
MutableStack interface.This package contains implementations of the mutable primitive stack interfaces.
This package contains static utilities that provide iteration pattern implementations which work with JCF collections.
This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections.
-
Uses of MutableCharCollection in org.eclipse.collections.api
Methods in org.eclipse.collections.api with type parameters of type MutableCharCollectionModifier and TypeMethodDescriptiondefault <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.primitiveModifier and TypeInterfaceDescriptioninterfaceThis 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 MutableCharCollectionModifier and TypeMethodDescriptiondefault 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 MutableCharCollectionModifier and TypeMethodDescriptionMutableCharCollection.asSynchronized()MutableCharCollection.asUnmodifiable()default MutableCharCollectionMutableCharCollection.newEmpty()Creates a new empty mutable version of the same collection type.MutableCharCollection.reject(CharPredicate predicate) MutableCharCollection.select(CharPredicate predicate) default MutableCharCollectionMutableCharCollection.tap(CharProcedure procedure) MutableCharCollection.with(char element) MutableCharCollection.withAll(CharIterable elements) MutableCharCollection.without(char element) MutableCharCollection.withoutAll(CharIterable elements) -
Uses of MutableCharCollection in org.eclipse.collections.api.list.primitive
Subinterfaces of MutableCharCollection in org.eclipse.collections.api.list.primitiveModifier and TypeInterfaceDescriptioninterfaceThis 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 MutableCharCollectionModifier and TypeMethodDescriptionMutableObjectCharMap.reject(CharPredicate predicate) MutableObjectCharMap.select(CharPredicate predicate) CharValuesMap.values()Returns the values in this map as a separate collection.ObjectCharMap.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 MutableCharCollectionModifier and TypeMethodDescriptiondefault <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.primitiveModifier and TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file mutablePrimitiveSet.stg. -
Uses of MutableCharCollection in org.eclipse.collections.impl
Methods in org.eclipse.collections.impl with type parameters of type MutableCharCollectionModifier and TypeMethodDescription<R extends MutableCharCollection>
RUnmodifiableRichIterable.collectChar(CharFunction<? super T> charFunction, R target) <R extends MutableCharCollection>
RUnmodifiableRichIterable.flatCollectChar(Function<? super T, ? extends CharIterable> function, R target) -
Uses of MutableCharCollection in org.eclipse.collections.impl.bag
Methods in org.eclipse.collections.impl.bag with type parameters of type MutableCharCollectionModifier and TypeMethodDescription<R extends MutableCharCollection>
RAbstractBag.collectChar(CharFunction<? super T> charFunction, R target) <R extends MutableCharCollection>
RAbstractBag.flatCollectChar(Function<? super T, ? extends CharIterable> function, R target) -
Uses of MutableCharCollection in org.eclipse.collections.impl.bag.mutable.primitive
Classes in org.eclipse.collections.impl.bag.mutable.primitive that implement MutableCharCollectionModifier and TypeClassDescriptionclassCharHashBag is similar toHashBag, and is memory-optimized for char primitives.classA synchronized view of aMutableCharBag.classThis file was automatically generated from template file unmodifiablePrimitiveBag.stg. -
Uses of MutableCharCollection in org.eclipse.collections.impl.bimap
Methods in org.eclipse.collections.impl.bimap with type parameters of type MutableCharCollectionModifier and TypeMethodDescription<R extends MutableCharCollection>
RAbstractBiMap.collectChar(CharFunction<? super V> charFunction, R target) <R extends MutableCharCollection>
RAbstractBiMap.flatCollectChar(Function<? super V, ? extends CharIterable> function, R target) -
Uses of MutableCharCollection in org.eclipse.collections.impl.bimap.mutable
Methods in org.eclipse.collections.impl.bimap.mutable with type parameters of type MutableCharCollectionModifier and TypeMethodDescription<R extends MutableCharCollection>
RUnmodifiableBiMap.collectChar(CharFunction<? super V> charFunction, R target) <R extends MutableCharCollection>
RUnmodifiableBiMap.flatCollectChar(Function<? super V, ? extends CharIterable> function, R target) -
Uses of MutableCharCollection in org.eclipse.collections.impl.block.procedure.primitive
Fields in org.eclipse.collections.impl.block.procedure.primitive declared as MutableCharCollectionModifier and TypeFieldDescriptionprivate final MutableCharCollectionCollectCharProcedure.charCollectionMethods in org.eclipse.collections.impl.block.procedure.primitive that return MutableCharCollectionConstructors in org.eclipse.collections.impl.block.procedure.primitive with parameters of type MutableCharCollectionModifierConstructorDescriptionCollectCharProcedure(CharFunction<? super T> charFunction, MutableCharCollection targetCollection) -
Uses of MutableCharCollection in org.eclipse.collections.impl.collection
Methods in org.eclipse.collections.impl.collection with type parameters of type MutableCharCollectionModifier and TypeMethodDescription<R extends MutableCharCollection>
RAbstractSynchronizedRichIterable.collectChar(CharFunction<? super T> charFunction, R target) <R extends MutableCharCollection>
RAbstractSynchronizedRichIterable.flatCollectChar(Function<? super T, ? extends CharIterable> function, R target) -
Uses of MutableCharCollection in org.eclipse.collections.impl.collection.mutable
Methods in org.eclipse.collections.impl.collection.mutable with type parameters of type MutableCharCollectionModifier and TypeMethodDescription<R extends MutableCharCollection>
RAbstractCollectionAdapter.collectChar(CharFunction<? super T> charFunction, R target) <R extends MutableCharCollection>
RAbstractMultiReaderMutableCollection.collectChar(CharFunction<? super T> charFunction, R target) final <R extends MutableCharCollection>
RAbstractMultiReaderMutableCollection.UntouchableMutableCollection.collectChar(CharFunction<? super T> charFunction, R target) <R extends MutableCharCollection>
RAbstractUnmodifiableMutableCollection.collectChar(CharFunction<? super T> charFunction, R target) <R extends MutableCharCollection>
RAbstractMultiReaderMutableCollection.flatCollectChar(Function<? super T, ? extends CharIterable> function, R target) final <R extends MutableCharCollection>
RAbstractMultiReaderMutableCollection.UntouchableMutableCollection.flatCollectChar(Function<? super T, ? extends CharIterable> function, R target) <R extends MutableCharCollection>
RAbstractUnmodifiableMutableCollection.flatCollectChar(Function<? super T, ? extends CharIterable> function, R target) Methods in org.eclipse.collections.impl.collection.mutable that return MutableCharCollectionModifier and TypeMethodDescriptionAbstractSynchronizedMutableCollection.collectChar(CharFunction<? super T> charFunction) AbstractUnmodifiableMutableCollection.collectChar(CharFunction<? super T> charFunction) -
Uses of MutableCharCollection in org.eclipse.collections.impl.collection.mutable.primitive
Classes in org.eclipse.collections.impl.collection.mutable.primitive that implement MutableCharCollectionModifier and TypeClassDescriptionclassThis file was automatically generated from template file abstractSynchronizedPrimitiveCollection.stg.classThis file was automatically generated from template file abstractUnmodifiablePrimitiveCollection.stg.classThis file was automatically generated from template file synchronizedPrimitiveCollection.stg.classThis file was automatically generated from template file unmodifiablePrimitiveCollection.stg.Fields in org.eclipse.collections.impl.collection.mutable.primitive declared as MutableCharCollectionModifier and TypeFieldDescriptionprivate final MutableCharCollectionAbstractSynchronizedCharCollection.collectionprivate final MutableCharCollectionAbstractUnmodifiableCharCollection.collectionMethods in org.eclipse.collections.impl.collection.mutable.primitive that return MutableCharCollectionModifier and TypeMethodDescriptionAbstractSynchronizedCharCollection.asSynchronized()AbstractUnmodifiableCharCollection.asSynchronized()AbstractSynchronizedCharCollection.asUnmodifiable()AbstractUnmodifiableCharCollection.asUnmodifiable()protected MutableCharCollectionAbstractSynchronizedCharCollection.getCharCollection()protected MutableCharCollectionAbstractUnmodifiableCharCollection.getCharCollection()SynchronizedCharCollection.newEmpty()UnmodifiableCharCollection.newEmpty()AbstractSynchronizedCharCollection.reject(CharPredicate predicate) AbstractUnmodifiableCharCollection.reject(CharPredicate predicate) AbstractSynchronizedCharCollection.select(CharPredicate predicate) AbstractUnmodifiableCharCollection.select(CharPredicate predicate) AbstractSynchronizedCharCollection.with(char element) AbstractUnmodifiableCharCollection.with(char element) AbstractSynchronizedCharCollection.withAll(CharIterable elements) AbstractUnmodifiableCharCollection.withAll(CharIterable elements) AbstractSynchronizedCharCollection.without(char element) AbstractUnmodifiableCharCollection.without(char element) AbstractSynchronizedCharCollection.withoutAll(CharIterable elements) AbstractUnmodifiableCharCollection.withoutAll(CharIterable elements) Methods in org.eclipse.collections.impl.collection.mutable.primitive with parameters of type MutableCharCollectionModifier and TypeMethodDescriptionstatic SynchronizedCharCollectionSynchronizedCharCollection.of(MutableCharCollection collection) This method will take a MutableCharCollection and wrap it directly in a SynchronizedCharCollection.static SynchronizedCharCollectionSynchronizedCharCollection.of(MutableCharCollection collection, Object lock) This method will take a MutableCharCollection and wrap it directly in a SynchronizedCharCollection.static UnmodifiableCharCollectionUnmodifiableCharCollection.of(MutableCharCollection collection) This method will take a MutableCharCollection and wrap it directly in a UnmodifiableCharCollection.Constructors in org.eclipse.collections.impl.collection.mutable.primitive with parameters of type MutableCharCollectionModifierConstructorDescriptionprotectedprotectedAbstractSynchronizedCharCollection(MutableCharCollection collection, Object newLock) protectedprotectedSynchronizedCharCollection(MutableCharCollection collection) protectedSynchronizedCharCollection(MutableCharCollection collection, Object newLock) protectedUnmodifiableCharCollection(MutableCharCollection collection) -
Uses of MutableCharCollection in org.eclipse.collections.impl.collector
Methods in org.eclipse.collections.impl.collector with type parameters of type MutableCharCollectionModifier and TypeMethodDescriptionstatic <T, R extends MutableCharCollection>
Collector<T, ?, R> Collectors2.collectChar(CharFunction<? super T> function, Supplier<R> supplier) Returns a new MutableCharCollection with the results of applying the specified CharFunction on each element of the source. -
Uses of MutableCharCollection in org.eclipse.collections.impl.lazy.primitive
Fields in org.eclipse.collections.impl.lazy.primitive with type parameters of type MutableCharCollectionModifier and TypeFieldDescriptionprivate final Function0<MutableCharCollection> ChunkCharIterable.ChunkCharIterator.speciesNewStrategy -
Uses of MutableCharCollection in org.eclipse.collections.impl.list.immutable.primitive
Methods in org.eclipse.collections.impl.list.immutable.primitive with type parameters of type MutableCharCollectionModifier and TypeMethodDescription<R extends MutableCharCollection>
RImmutableCharArrayList.reject(CharPredicate predicate, R target) <R extends MutableCharCollection>
RImmutableCharArrayList.select(CharPredicate predicate, R target) -
Uses of MutableCharCollection in org.eclipse.collections.impl.list.mutable
Methods in org.eclipse.collections.impl.list.mutable with type parameters of type MutableCharCollectionModifier and TypeMethodDescription<R extends MutableCharCollection>
RFastList.collectChar(CharFunction<? super T> charFunction, R target) <R extends MutableCharCollection>
RFastList.flatCollectChar(Function<? super T, ? extends CharIterable> function, R target) -
Uses of MutableCharCollection in org.eclipse.collections.impl.list.mutable.primitive
Classes in org.eclipse.collections.impl.list.mutable.primitive that implement MutableCharCollectionModifier and TypeClassDescriptionclassCharArrayList is similar to FastList, and is memory-optimized for char primitives.classA synchronized view of aMutableCharList.classThis file was automatically generated from template file unmodifiablePrimitiveList.stg.Methods in org.eclipse.collections.impl.list.mutable.primitive with type parameters of type MutableCharCollectionModifier and TypeMethodDescription<R extends MutableCharCollection>
RCharArrayList.reject(CharPredicate predicate, R target) <R extends MutableCharCollection>
RSynchronizedCharList.rejectWithIndex(CharIntPredicate predicate, R target) Returns a new MutableCharCollection excluding all elements with corresponding indexes matching the specified predicate.<R extends MutableCharCollection>
RUnmodifiableCharList.rejectWithIndex(CharIntPredicate predicate, R target) Returns a new MutableCharCollection excluding all elements with corresponding indexes matching the specified predicate.<R extends MutableCharCollection>
RCharArrayList.select(CharPredicate predicate, R target) <R extends MutableCharCollection>
RSynchronizedCharList.selectWithIndex(CharIntPredicate predicate, R target) Returns a new MutableCharCollection including all elements with corresponding indexes matching the specified predicate.<R extends MutableCharCollection>
RUnmodifiableCharList.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.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive with type parameters of type MutableCharCollectionModifier and TypeMethodDescription<R extends MutableCharCollection>
RImmutableByteObjectEmptyMap.collectChar(CharFunction<? super V> charFunction, R target) <R extends MutableCharCollection>
RImmutableByteObjectHashMap.collectChar(CharFunction<? super V> charFunction, R target) <R extends MutableCharCollection>
RImmutableByteObjectSingletonMap.collectChar(CharFunction<? super V> charFunction, R target) <R extends MutableCharCollection>
RImmutableCharObjectEmptyMap.collectChar(CharFunction<? super V> charFunction, R target) <R extends MutableCharCollection>
RImmutableCharObjectHashMap.collectChar(CharFunction<? super V> charFunction, R target) <R extends MutableCharCollection>
RImmutableCharObjectSingletonMap.collectChar(CharFunction<? super V> charFunction, R target) <R extends MutableCharCollection>
RImmutableDoubleObjectEmptyMap.collectChar(CharFunction<? super V> charFunction, R target) <R extends MutableCharCollection>
RImmutableDoubleObjectHashMap.collectChar(CharFunction<? super V> charFunction, R target) <R extends MutableCharCollection>
RImmutableDoubleObjectSingletonMap.collectChar(CharFunction<? super V> charFunction, R target) <R extends MutableCharCollection>
RImmutableFloatObjectEmptyMap.collectChar(CharFunction<? super V> charFunction, R target) <R extends MutableCharCollection>
RImmutableFloatObjectHashMap.collectChar(CharFunction<? super V> charFunction, R target) <R extends MutableCharCollection>
RImmutableFloatObjectSingletonMap.collectChar(CharFunction<? super V> charFunction, R target) <R extends MutableCharCollection>
RImmutableIntObjectEmptyMap.collectChar(CharFunction<? super V> charFunction, R target) <R extends MutableCharCollection>
RImmutableIntObjectHashMap.collectChar(CharFunction<? super V> charFunction, R target) <R extends MutableCharCollection>
RImmutableIntObjectSingletonMap.collectChar(CharFunction<? super V> charFunction, R target) <R extends MutableCharCollection>
RImmutableLongObjectEmptyMap.collectChar(CharFunction<? super V> charFunction, R target) <R extends MutableCharCollection>
RImmutableLongObjectHashMap.collectChar(CharFunction<? super V> charFunction, R target) <R extends MutableCharCollection>
RImmutableLongObjectSingletonMap.collectChar(CharFunction<? super V> charFunction, R target) <R extends MutableCharCollection>
RImmutableShortObjectEmptyMap.collectChar(CharFunction<? super V> charFunction, R target) <R extends MutableCharCollection>
RImmutableShortObjectHashMap.collectChar(CharFunction<? super V> charFunction, R target) <R extends MutableCharCollection>
RImmutableShortObjectSingletonMap.collectChar(CharFunction<? super V> charFunction, R target) <R extends MutableCharCollection>
RImmutableByteObjectEmptyMap.flatCollectChar(Function<? super V, ? extends CharIterable> function, R target) <R extends MutableCharCollection>
RImmutableCharObjectEmptyMap.flatCollectChar(Function<? super V, ? extends CharIterable> function, R target) <R extends MutableCharCollection>
RImmutableDoubleObjectEmptyMap.flatCollectChar(Function<? super V, ? extends CharIterable> function, R target) <R extends MutableCharCollection>
RImmutableFloatObjectEmptyMap.flatCollectChar(Function<? super V, ? extends CharIterable> function, R target) <R extends MutableCharCollection>
RImmutableIntObjectEmptyMap.flatCollectChar(Function<? super V, ? extends CharIterable> function, R target) <R extends MutableCharCollection>
RImmutableLongObjectEmptyMap.flatCollectChar(Function<? super V, ? extends CharIterable> function, R target) <R extends MutableCharCollection>
RImmutableShortObjectEmptyMap.flatCollectChar(Function<? super V, ? extends CharIterable> function, R target) Methods in org.eclipse.collections.impl.map.immutable.primitive that return MutableCharCollectionModifier and TypeMethodDescriptionImmutableByteCharEmptyMap.values()ImmutableByteCharHashMap.values()ImmutableByteCharSingletonMap.values()ImmutableCharCharEmptyMap.values()ImmutableCharCharHashMap.values()ImmutableCharCharSingletonMap.values()ImmutableDoubleCharEmptyMap.values()ImmutableDoubleCharHashMap.values()ImmutableDoubleCharSingletonMap.values()ImmutableFloatCharEmptyMap.values()ImmutableFloatCharHashMap.values()ImmutableFloatCharSingletonMap.values()ImmutableIntCharEmptyMap.values()ImmutableIntCharHashMap.values()ImmutableIntCharSingletonMap.values()ImmutableLongCharEmptyMap.values()ImmutableLongCharHashMap.values()ImmutableLongCharSingletonMap.values()ImmutableObjectCharEmptyMap.values()ImmutableObjectCharHashMap.values()ImmutableObjectCharSingletonMap.values()ImmutableShortCharEmptyMap.values()ImmutableShortCharHashMap.values()ImmutableShortCharSingletonMap.values() -
Uses of MutableCharCollection in org.eclipse.collections.impl.map.mutable
Methods in org.eclipse.collections.impl.map.mutable with type parameters of type MutableCharCollectionModifier and TypeMethodDescription<R extends MutableCharCollection>
RUnmodifiableMutableMap.collectChar(CharFunction<? super V> charFunction, R target) <R extends MutableCharCollection>
RUnmodifiableMutableMap.flatCollectChar(Function<? super V, ? extends CharIterable> function, R target) -
Uses of MutableCharCollection in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableCharCollectionModifier and TypeClassDescriptionclassThis file was automatically generated from template file abstractMutablePrimitiveKeySet.stg.protected classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classMethods in org.eclipse.collections.impl.map.mutable.primitive with type parameters of type MutableCharCollectionModifier and TypeMethodDescription<R extends MutableCharCollection>
RSynchronizedByteObjectMap.collectChar(CharFunction<? super V> charFunction, R target) <R extends MutableCharCollection>
RSynchronizedCharObjectMap.collectChar(CharFunction<? super V> charFunction, R target) <R extends MutableCharCollection>
RSynchronizedDoubleObjectMap.collectChar(CharFunction<? super V> charFunction, R target) <R extends MutableCharCollection>
RSynchronizedFloatObjectMap.collectChar(CharFunction<? super V> charFunction, R target) <R extends MutableCharCollection>
RSynchronizedIntObjectMap.collectChar(CharFunction<? super V> charFunction, R target) <R extends MutableCharCollection>
RSynchronizedLongObjectMap.collectChar(CharFunction<? super V> charFunction, R target) <R extends MutableCharCollection>
RSynchronizedShortObjectMap.collectChar(CharFunction<? super V> charFunction, R target) <R extends MutableCharCollection>
RUnmodifiableByteObjectMap.collectChar(CharFunction<? super V> charFunction, R target) <R extends MutableCharCollection>
RUnmodifiableCharObjectMap.collectChar(CharFunction<? super V> charFunction, R target) <R extends MutableCharCollection>
RUnmodifiableDoubleObjectMap.collectChar(CharFunction<? super V> charFunction, R target) <R extends MutableCharCollection>
RUnmodifiableFloatObjectMap.collectChar(CharFunction<? super V> charFunction, R target) <R extends MutableCharCollection>
RUnmodifiableIntObjectMap.collectChar(CharFunction<? super V> charFunction, R target) <R extends MutableCharCollection>
RUnmodifiableLongObjectMap.collectChar(CharFunction<? super V> charFunction, R target) <R extends MutableCharCollection>
RUnmodifiableShortObjectMap.collectChar(CharFunction<? super V> charFunction, R target) <R extends MutableCharCollection>
RSynchronizedByteObjectMap.flatCollectChar(Function<? super V, ? extends CharIterable> function, R target) <R extends MutableCharCollection>
RSynchronizedCharObjectMap.flatCollectChar(Function<? super V, ? extends CharIterable> function, R target) <R extends MutableCharCollection>
RSynchronizedDoubleObjectMap.flatCollectChar(Function<? super V, ? extends CharIterable> function, R target) <R extends MutableCharCollection>
RSynchronizedFloatObjectMap.flatCollectChar(Function<? super V, ? extends CharIterable> function, R target) <R extends MutableCharCollection>
RSynchronizedIntObjectMap.flatCollectChar(Function<? super V, ? extends CharIterable> function, R target) <R extends MutableCharCollection>
RSynchronizedLongObjectMap.flatCollectChar(Function<? super V, ? extends CharIterable> function, R target) <R extends MutableCharCollection>
RSynchronizedShortObjectMap.flatCollectChar(Function<? super V, ? extends CharIterable> function, R target) Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableCharCollectionModifier and TypeMethodDescriptionAbstractMutableCharValuesMap.AbstractCharValuesCollection.asSynchronized()ObjectCharHashMap.ValuesCollection.asSynchronized()ObjectCharHashMapWithHashingStrategy.ValuesCollection.asSynchronized()AbstractMutableCharValuesMap.AbstractCharValuesCollection.asUnmodifiable()ObjectCharHashMap.ValuesCollection.asUnmodifiable()ObjectCharHashMapWithHashingStrategy.ValuesCollection.asUnmodifiable()ByteCharHashMap.ValuesCollection.newEmpty()CharCharHashMap.ValuesCollection.newEmpty()DoubleCharHashMap.ValuesCollection.newEmpty()FloatCharHashMap.ValuesCollection.newEmpty()IntCharHashMap.ValuesCollection.newEmpty()LongCharHashMap.ValuesCollection.newEmpty()ObjectCharHashMap.ValuesCollection.newEmpty()ObjectCharHashMapWithHashingStrategy.ValuesCollection.newEmpty()ShortCharHashMap.ValuesCollection.newEmpty()AbstractMutableCharValuesMap.AbstractCharValuesCollection.reject(CharPredicate predicate) ObjectCharHashMap.reject(CharPredicate predicate) ObjectCharHashMap.ValuesCollection.reject(CharPredicate predicate) ObjectCharHashMapWithHashingStrategy.reject(CharPredicate predicate) ObjectCharHashMapWithHashingStrategy.ValuesCollection.reject(CharPredicate predicate) SynchronizedObjectCharMap.reject(CharPredicate predicate) UnmodifiableObjectCharMap.reject(CharPredicate predicate) AbstractMutableCharValuesMap.AbstractCharValuesCollection.select(CharPredicate predicate) ObjectCharHashMap.select(CharPredicate predicate) ObjectCharHashMap.ValuesCollection.select(CharPredicate predicate) ObjectCharHashMapWithHashingStrategy.select(CharPredicate predicate) ObjectCharHashMapWithHashingStrategy.ValuesCollection.select(CharPredicate predicate) SynchronizedObjectCharMap.select(CharPredicate predicate) UnmodifiableObjectCharMap.select(CharPredicate predicate) ByteCharHashMap.values()CharCharHashMap.values()DoubleCharHashMap.values()FloatCharHashMap.values()IntCharHashMap.values()LongCharHashMap.values()ObjectCharHashMap.values()ObjectCharHashMapWithHashingStrategy.values()ShortCharHashMap.values()SynchronizedByteCharMap.values()SynchronizedCharCharMap.values()SynchronizedDoubleCharMap.values()SynchronizedFloatCharMap.values()SynchronizedIntCharMap.values()SynchronizedLongCharMap.values()SynchronizedObjectCharMap.values()SynchronizedShortCharMap.values()UnmodifiableByteCharMap.values()UnmodifiableCharCharMap.values()UnmodifiableDoubleCharMap.values()UnmodifiableFloatCharMap.values()UnmodifiableIntCharMap.values()UnmodifiableLongCharMap.values()UnmodifiableObjectCharMap.values()UnmodifiableShortCharMap.values()AbstractMutableCharValuesMap.AbstractCharValuesCollection.with(char element) ObjectCharHashMap.ValuesCollection.with(char element) ObjectCharHashMapWithHashingStrategy.ValuesCollection.with(char element) AbstractMutableCharValuesMap.AbstractCharValuesCollection.withAll(CharIterable elements) ObjectCharHashMap.ValuesCollection.withAll(CharIterable elements) ObjectCharHashMapWithHashingStrategy.ValuesCollection.withAll(CharIterable elements) AbstractMutableCharValuesMap.AbstractCharValuesCollection.without(char element) ObjectCharHashMap.ValuesCollection.without(char element) ObjectCharHashMapWithHashingStrategy.ValuesCollection.without(char element) AbstractMutableCharValuesMap.AbstractCharValuesCollection.withoutAll(CharIterable elements) ObjectCharHashMap.ValuesCollection.withoutAll(CharIterable elements) ObjectCharHashMapWithHashingStrategy.ValuesCollection.withoutAll(CharIterable elements) -
Uses of MutableCharCollection in org.eclipse.collections.impl.map.ordered.mutable
Methods in org.eclipse.collections.impl.map.ordered.mutable with type parameters of type MutableCharCollectionModifier and TypeMethodDescription<R extends MutableCharCollection>
RUnmodifiableMutableOrderedMap.collectChar(CharFunction<? super V> charFunction, R target) <R extends MutableCharCollection>
RUnmodifiableMutableOrderedMap.flatCollectChar(Function<? super V, ? extends CharIterable> function, R target) -
Uses of MutableCharCollection in org.eclipse.collections.impl.map.sorted.mutable
Methods in org.eclipse.collections.impl.map.sorted.mutable with type parameters of type MutableCharCollectionModifier and TypeMethodDescription<R extends MutableCharCollection>
RUnmodifiableTreeMap.collectChar(CharFunction<? super V> charFunction, R target) <R extends MutableCharCollection>
RUnmodifiableTreeMap.flatCollectChar(Function<? super V, ? extends CharIterable> function, R target) -
Uses of MutableCharCollection in org.eclipse.collections.impl.set.mutable.primitive
Classes in org.eclipse.collections.impl.set.mutable.primitive that implement MutableCharCollectionModifier and TypeClassDescriptionclassThis file was automatically generated from template file primitiveHashSet.stg.classA synchronized view of aMutableCharSet.classThis file was automatically generated from template file unmodifiablePrimitiveSet.stg.Methods in org.eclipse.collections.impl.set.mutable.primitive with type parameters of type MutableCharCollectionModifier and TypeMethodDescription<R extends MutableCharCollection>
RCharHashSet.reject(CharPredicate predicate, R target) <R extends MutableCharCollection>
RCharHashSet.select(CharPredicate predicate, R target) -
Uses of MutableCharCollection in org.eclipse.collections.impl.stack.immutable
Methods in org.eclipse.collections.impl.stack.immutable with type parameters of type MutableCharCollectionModifier and TypeMethodDescription<R extends MutableCharCollection>
RImmutableArrayStack.collectChar(CharFunction<? super T> charFunction, R target) Deprecated.<R extends MutableCharCollection>
RImmutableEmptyStack.collectChar(CharFunction<? super T> charFunction, R target) <R extends MutableCharCollection>
RImmutableArrayStack.flatCollectChar(Function<? super T, ? extends CharIterable> function, R target) Deprecated.<R extends MutableCharCollection>
RImmutableEmptyStack.flatCollectChar(Function<? super T, ? extends CharIterable> function, R target) -
Uses of MutableCharCollection in org.eclipse.collections.impl.stack.mutable
Methods in org.eclipse.collections.impl.stack.mutable with type parameters of type MutableCharCollectionModifier and TypeMethodDescription<R extends MutableCharCollection>
RArrayStack.collectChar(CharFunction<? super T> charFunction, R target) <R extends MutableCharCollection>
RSynchronizedStack.collectChar(CharFunction<? super T> charFunction, R target) <R extends MutableCharCollection>
RUnmodifiableStack.collectChar(CharFunction<? super T> charFunction, R target) <R extends MutableCharCollection>
RArrayStack.flatCollectChar(Function<? super T, ? extends CharIterable> function, R target) <R extends MutableCharCollection>
RSynchronizedStack.flatCollectChar(Function<? super T, ? extends CharIterable> function, R target) <R extends MutableCharCollection>
RUnmodifiableStack.flatCollectChar(Function<? super T, ? extends CharIterable> function, R target) -
Uses of MutableCharCollection in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive with type parameters of type MutableCharCollectionModifier and TypeMethodDescription<R extends MutableCharCollection>
RSynchronizedCharStack.rejectWithIndex(CharIntPredicate predicate, R target) Returns a new MutableCharCollection excluding all elements with corresponding indexes matching the specified predicate.<R extends MutableCharCollection>
RSynchronizedCharStack.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.impl.utility
Methods in org.eclipse.collections.impl.utility with type parameters of type MutableCharCollectionModifier and TypeMethodDescriptionstatic <T, R extends MutableCharCollection>
RArrayIterate.collectChar(T[] objectArray, CharFunction<? super T> charFunction, R target) static <T, R extends MutableCharCollection>
RArrayListIterate.collectChar(ArrayList<T> list, CharFunction<? super T> charFunction, R target) static <T, R extends MutableCharCollection>
RIterate.collectChar(Iterable<T> iterable, CharFunction<? super T> charFunction, R target) Same asIterate.collectChar(Iterable, CharFunction), except that the results are gathered into the specifiedtargetcollection.static <T, R extends MutableCharCollection>
RListIterate.collectChar(List<T> list, CharFunction<? super T> charFunction, R target) static <K, V, R extends MutableCharCollection>
RMapIterate.collectChar(Map<K, V> map, CharFunction<? super V> charFunction, R target) private static <T, R extends MutableCharCollection>
RArrayListIterate.collectCharFromInternalArray(ArrayList<T> source, CharFunction<? super T> charFunction, int elementsToCollect, R target) Methods in org.eclipse.collections.impl.utility that return MutableCharCollectionModifier and TypeMethodDescriptionstatic <T> MutableCharCollectionIterate.collectChar(Iterable<T> iterable, CharFunction<? super T> charFunction) Returns a newcharcollection with the results of applying the specified charFunction for each element of the iterable.static <K,V> MutableCharCollection MapIterate.collectChar(Map<K, V> map, CharFunction<? super V> charFunction) -
Uses of MutableCharCollection in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal with type parameters of type MutableCharCollectionModifier and TypeMethodDescriptionstatic <R extends MutableCharCollection, T>
RInternalArrayIterate.collectChar(T[] items, int size, CharFunction<? super T> charFunction, R target) Adds all array elements to the target MutableCharCollection after using the function supplied to convert each source element to the appropriate typestatic <T, R extends MutableCharCollection>
RIterableIterate.collectChar(Iterable<T> iterable, CharFunction<? super T> charFunction, R target) static <T, R extends MutableCharCollection>
RIteratorIterate.collectChar(Iterator<T> iterator, CharFunction<? super T> charFunction, R target) static <T, R extends MutableCharCollection>
RRandomAccessListIterate.collectChar(List<T> list, CharFunction<? super T> charFunction, R target) Methods in org.eclipse.collections.impl.utility.internal that return MutableCharCollectionModifier and TypeMethodDescriptionstatic <T> MutableCharCollectionIterableIterate.collectChar(Iterable<T> iterable, CharFunction<? super T> charFunction) static <T> MutableCharCollectionIteratorIterate.collectChar(Iterator<T> iterator, CharFunction<? super T> charFunction) -
Uses of MutableCharCollection in org.eclipse.collections.impl.utility.internal.primitive
Methods in org.eclipse.collections.impl.utility.internal.primitive with type parameters of type MutableCharCollectionModifier and TypeMethodDescriptionstatic <R extends MutableCharCollection>
RCharIterableIterate.reject(CharIterable iterable, CharPredicate predicate, R targetCollection) static <R extends MutableCharCollection>
RCharIteratorIterate.reject(CharIterator iterator, CharPredicate predicate, R targetCollection) static <R extends MutableCharCollection>
RCharIterableIterate.select(CharIterable iterable, CharPredicate predicate, R targetCollection) static <R extends MutableCharCollection>
RCharIteratorIterate.select(CharIterator iterator, CharPredicate predicate, R targetCollection)