Uses of Interface
org.eclipse.collections.api.block.function.primitive.CharFunction
Packages that use CharFunction
Package
Description
This package contains interfaces for Eclipse Collections API.
This package contains interfaces for Bag API.
This package contains interfaces for SortedBag API.
This package contains interfaces for list API which enhance the performance and functionality of
List
.This package contains interfaces for map API which enhance the performance and functionality of
Map
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 mutable and immutable sorted map interfaces.
This package contains interfaces for set API which enhance the performance and functionality of
Set
.This package contains interfaces for sorted set API.
This package contains interfaces for stack API.
This package contains implementations for Eclipse Collections API.
This package contains implementations of the
ImmutableBag
interface.This package contains implementations of the
MutableBag
interface.This package contains implementations of
MutableSortedBag
.This package contains implementations of the
MutableBiMap
interface.This package contains implementations of the
SerializableComparator
interface to compare primitive double, int and long.This package contains factory implementations for
Function
, Predicate
, SerializableComparator
and Procedure
.This package contains implementations of
Procedure
and Procedure2
.This package contains implementations of primitive procedures.
This package contains implementations of the
MutableCollection
interface.This package contains implementations of the
LazyIterable
interface.This package contains implementations of the lazy primitive iterator interfaces.
This package contains implementations of the
FixedSizeList
interface.This package contains implementations of the
ImmutableList
interface.This package contains implementations of the
MutableList
interface.This package contains implementations of the
ImmutableMap
interface.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
MutableSortedMap
interface.This package contains the implementations of
ImmutableSet
.This package contains implementations of
MutableSet
.This package contains implementations of
ImmutableSortedSet
.This package contains implementations of
MutableSortedSet
.This package contains implementations of the
ImmutableStack
interface.This package contains implementations of the
MutableStack
interface.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 CharFunction in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type CharFunctionModifier and TypeMethodDescriptionLazyIterable.collectChar
(CharFunction<? super T> charFunction) Returns a lazy CharIterable which will transform the underlying iterable data to char values based on the charFunction.RichIterable.collectChar
(CharFunction<? super T> charFunction) Returns a new primitivechar
iterable with 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 specifiedtarget
collection. -
Uses of CharFunction in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag with parameters of type CharFunctionModifier and TypeMethodDescriptionImmutableBag.collectChar
(CharFunction<? super T> charFunction) default MutableCharBag
MutableBag.collectChar
(CharFunction<? super T> charFunction) UnsortedBag.collectChar
(CharFunction<? super T> charFunction) -
Uses of CharFunction in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted with parameters of type CharFunctionModifier and TypeMethodDescriptionImmutableSortedBag.collectChar
(CharFunction<? super T> charFunction) MutableSortedBag.collectChar
(CharFunction<? super T> charFunction) SortedBag.collectChar
(CharFunction<? super T> charFunction) -
Uses of CharFunction in org.eclipse.collections.api.collection
Methods in org.eclipse.collections.api.collection with parameters of type CharFunctionModifier and TypeMethodDescriptionImmutableCollection.collectChar
(CharFunction<? super T> charFunction) default MutableCharCollection
MutableCollection.collectChar
(CharFunction<? super T> charFunction) Returns a new primitivechar
iterable with the results of applying the specified function on each element of the source collection. -
Uses of CharFunction in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive with parameters of type CharFunctionModifier and TypeMethodDescriptionImmutableByteCharMapFactory.from
(Iterable<T> iterable, ByteFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anImmutableByteCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableCharBooleanMapFactory.from
(Iterable<T> iterable, CharFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction) Creates anImmutableCharBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableCharByteMapFactory.from
(Iterable<T> iterable, CharFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) Creates anImmutableCharByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableCharCharMapFactory.from
(Iterable<T> iterable, CharFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anImmutableCharCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableCharDoubleMapFactory.from
(Iterable<T> iterable, CharFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) Creates anImmutableCharDoubleMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableCharFloatMapFactory.from
(Iterable<T> iterable, CharFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction) Creates anImmutableCharFloatMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableCharIntMapFactory.from
(Iterable<T> iterable, CharFunction<? super T> keyFunction, IntFunction<? super T> valueFunction) Creates anImmutableCharIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableCharLongMapFactory.from
(Iterable<T> iterable, CharFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) Creates anImmutableCharLongMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T,
V> ImmutableCharObjectMap <V> ImmutableCharObjectMapFactory.from
(Iterable<T> iterable, CharFunction<? super T> keyFunction, Function<? super T, ? extends V> valueFunction) Creates anImmutableCharObjectMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableCharShortMapFactory.from
(Iterable<T> iterable, CharFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) Creates anImmutableCharShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableDoubleCharMapFactory.from
(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anImmutableDoubleCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableFloatCharMapFactory.from
(Iterable<T> iterable, FloatFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anImmutableFloatCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableIntCharMapFactory.from
(Iterable<T> iterable, IntFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anImmutableIntCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableLongCharMapFactory.from
(Iterable<T> iterable, LongFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anImmutableLongCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T,
K> ImmutableObjectCharMap <K> ImmutableObjectCharMapFactory.from
(Iterable<T> iterable, Function<? super T, ? extends K> keyFunction, CharFunction<? super T> valueFunction) Creates anImmutableObjectCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.ImmutableShortCharMapFactory.from
(Iterable<T> iterable, ShortFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anImmutableShortCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableByteCharMapFactory.from
(Iterable<T> iterable, ByteFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anMutableByteCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableCharBooleanMapFactory.from
(Iterable<T> iterable, CharFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction) Creates anMutableCharBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableCharByteMapFactory.from
(Iterable<T> iterable, CharFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) Creates anMutableCharByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableCharCharMapFactory.from
(Iterable<T> iterable, CharFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anMutableCharCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableCharDoubleMapFactory.from
(Iterable<T> iterable, CharFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) Creates anMutableCharDoubleMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableCharFloatMapFactory.from
(Iterable<T> iterable, CharFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction) Creates anMutableCharFloatMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableCharIntMapFactory.from
(Iterable<T> iterable, CharFunction<? super T> keyFunction, IntFunction<? super T> valueFunction) Creates anMutableCharIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableCharLongMapFactory.from
(Iterable<T> iterable, CharFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) Creates anMutableCharLongMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T,
V> MutableCharObjectMap <V> MutableCharObjectMapFactory.from
(Iterable<T> iterable, CharFunction<? super T> keyFunction, Function<? super T, ? extends V> valueFunction) Creates anMutableCharObjectMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableCharShortMapFactory.from
(Iterable<T> iterable, CharFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) Creates anMutableCharShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableDoubleCharMapFactory.from
(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anMutableDoubleCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableFloatCharMapFactory.from
(Iterable<T> iterable, FloatFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anMutableFloatCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableIntCharMapFactory.from
(Iterable<T> iterable, IntFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anMutableIntCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableLongCharMapFactory.from
(Iterable<T> iterable, LongFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anMutableLongCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T,
K> MutableObjectCharMap <K> MutableObjectCharMapFactory.from
(Iterable<T> iterable, Function<? super T, ? extends K> keyFunction, CharFunction<? super T> valueFunction) Creates anMutableObjectCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableShortCharMapFactory.from
(Iterable<T> iterable, ShortFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anMutableShortCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
. -
Uses of CharFunction in org.eclipse.collections.api.list
Methods in org.eclipse.collections.api.list with parameters of type CharFunctionModifier and TypeMethodDescriptionImmutableList.collectChar
(CharFunction<? super T> charFunction) ListIterable.collectChar
(CharFunction<? super T> charFunction) default MutableCharList
MutableList.collectChar
(CharFunction<? super T> charFunction) MultiReaderList.sortThisByChar
(CharFunction<? super T> function) MutableList.sortThisByChar
(CharFunction<? super T> function) -
Uses of CharFunction in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map with parameters of type CharFunctionModifier and TypeMethodDescriptionImmutableMap.collectChar
(CharFunction<? super V> charFunction) ImmutableOrderedMap.collectChar
(CharFunction<? super V> charFunction) MutableMap.collectChar
(CharFunction<? super V> charFunction) MutableOrderedMap.collectChar
(CharFunction<? super V> charFunction) OrderedMap.collectChar
(CharFunction<? super V> charFunction) UnsortedMapIterable.collectChar
(CharFunction<? super V> charFunction) -
Uses of CharFunction in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type CharFunctionModifier and TypeMethodDescriptionImmutablePrimitiveObjectMap.collectChar
(CharFunction<? super V> charFunction) MutablePrimitiveObjectMap.collectChar
(CharFunction<? super V> charFunction) PrimitiveObjectMap.collectChar
(CharFunction<? super V> charFunction) <P> char
MutableByteCharMap.getIfAbsentPutWith
(byte key, CharFunction<? super P> function, P parameter) Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.<P> char
MutableCharCharMap.getIfAbsentPutWith
(char key, CharFunction<? super P> function, P parameter) Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.<P> char
MutableDoubleCharMap.getIfAbsentPutWith
(double key, CharFunction<? super P> function, P parameter) Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.<P> char
MutableFloatCharMap.getIfAbsentPutWith
(float key, CharFunction<? super P> function, P parameter) Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.<P> char
MutableIntCharMap.getIfAbsentPutWith
(int key, CharFunction<? super P> function, P parameter) Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.<P> char
MutableLongCharMap.getIfAbsentPutWith
(long key, CharFunction<? super P> function, P parameter) Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.<P> char
MutableObjectCharMap.getIfAbsentPutWith
(K key, CharFunction<? super P> function, P parameter) Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.<P> char
MutableShortCharMap.getIfAbsentPutWith
(short key, CharFunction<? super P> function, P parameter) Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.char
MutableObjectCharMap.getIfAbsentPutWithKey
(K key, CharFunction<? super K> function) Retrieves the value associated with the key if one exists; if it does not, associates the result of invoking the value function with the key. -
Uses of CharFunction in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted with parameters of type CharFunctionModifier and TypeMethodDescriptionImmutableSortedMap.collectChar
(CharFunction<? super V> charFunction) MutableSortedMap.collectChar
(CharFunction<? super V> charFunction) SortedMapIterable.collectChar
(CharFunction<? super V> charFunction) -
Uses of CharFunction in org.eclipse.collections.api.ordered
Methods in org.eclipse.collections.api.ordered with parameters of type CharFunctionModifier and TypeMethodDescriptionOrderedIterable.collectChar
(CharFunction<? super T> charFunction) ReversibleIterable.collectChar
(CharFunction<? super T> charFunction) -
Uses of CharFunction in org.eclipse.collections.api.set
Methods in org.eclipse.collections.api.set with parameters of type CharFunctionModifier and TypeMethodDescriptionImmutableSet.collectChar
(CharFunction<? super T> charFunction) default MutableCharSet
MutableSet.collectChar
(CharFunction<? super T> charFunction) UnsortedSetIterable.collectChar
(CharFunction<? super T> charFunction) -
Uses of CharFunction in org.eclipse.collections.api.set.sorted
Methods in org.eclipse.collections.api.set.sorted with parameters of type CharFunctionModifier and TypeMethodDescriptionImmutableSortedSet.collectChar
(CharFunction<? super T> charFunction) MutableSortedSet.collectChar
(CharFunction<? super T> charFunction) SortedSetIterable.collectChar
(CharFunction<? super T> charFunction) -
Uses of CharFunction in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack with parameters of type CharFunctionModifier and TypeMethodDescriptionImmutableStack.collectChar
(CharFunction<? super T> charFunction) MutableStack.collectChar
(CharFunction<? super T> charFunction) StackIterable.collectChar
(CharFunction<? super T> charFunction) -
Uses of CharFunction in org.eclipse.collections.impl
Methods in org.eclipse.collections.impl with parameters of type CharFunctionModifier and TypeMethodDescriptionUnmodifiableRichIterable.collectChar
(CharFunction<? super T> charFunction) <R extends MutableCharCollection>
RUnmodifiableRichIterable.collectChar
(CharFunction<? super T> charFunction, R target) -
Uses of CharFunction in org.eclipse.collections.impl.bag
Methods in org.eclipse.collections.impl.bag with parameters of type CharFunctionModifier and TypeMethodDescription<R extends MutableCharCollection>
RAbstractBag.collectChar
(CharFunction<? super T> charFunction, R target) -
Uses of CharFunction in org.eclipse.collections.impl.bag.immutable
Methods in org.eclipse.collections.impl.bag.immutable with parameters of type CharFunctionModifier and TypeMethodDescriptionAbstractImmutableBag.collectChar
(CharFunction<? super T> charFunction) ImmutableEmptyBag.collectChar
(CharFunction<? super T> charFunction) -
Uses of CharFunction in org.eclipse.collections.impl.bag.mutable
Methods in org.eclipse.collections.impl.bag.mutable with parameters of type CharFunctionModifier and TypeMethodDescriptionMultiReaderHashBag.collectChar
(CharFunction<? super T> charFunction) MultiReaderHashBag.UntouchableMutableBag.collectChar
(CharFunction<? super T> charFunction) SynchronizedBag.collectChar
(CharFunction<? super T> charFunction) UnmodifiableBag.collectChar
(CharFunction<? super T> charFunction) -
Uses of CharFunction in org.eclipse.collections.impl.bag.sorted.immutable
Methods in org.eclipse.collections.impl.bag.sorted.immutable with parameters of type CharFunctionModifier and TypeMethodDescriptionAbstractImmutableSortedBag.collectChar
(CharFunction<? super T> charFunction) -
Uses of CharFunction in org.eclipse.collections.impl.bag.sorted.mutable
Methods in org.eclipse.collections.impl.bag.sorted.mutable with parameters of type CharFunctionModifier and TypeMethodDescriptionAbstractMutableSortedBag.collectChar
(CharFunction<? super T> charFunction) SynchronizedSortedBag.collectChar
(CharFunction<? super T> charFunction) UnmodifiableSortedBag.collectChar
(CharFunction<? super T> charFunction) -
Uses of CharFunction in org.eclipse.collections.impl.bimap
Methods in org.eclipse.collections.impl.bimap with parameters of type CharFunctionModifier and TypeMethodDescription<R extends MutableCharCollection>
RAbstractBiMap.collectChar
(CharFunction<? super V> charFunction, R target) -
Uses of CharFunction in org.eclipse.collections.impl.bimap.immutable
Methods in org.eclipse.collections.impl.bimap.immutable with parameters of type CharFunctionModifier and TypeMethodDescriptionAbstractImmutableBiMap.collectChar
(CharFunction<? super V> charFunction) -
Uses of CharFunction in org.eclipse.collections.impl.bimap.mutable
Methods in org.eclipse.collections.impl.bimap.mutable with parameters of type CharFunctionModifier and TypeMethodDescriptionAbstractMutableBiMap.collectChar
(CharFunction<? super V> charFunction) UnmodifiableBiMap.collectChar
(CharFunction<? super V> charFunction) <R extends MutableCharCollection>
RUnmodifiableBiMap.collectChar
(CharFunction<? super V> charFunction, R target) -
Uses of CharFunction in org.eclipse.collections.impl.block.comparator.primitive
Fields in org.eclipse.collections.impl.block.comparator.primitive declared as CharFunctionConstructors in org.eclipse.collections.impl.block.comparator.primitive with parameters of type CharFunction -
Uses of CharFunction in org.eclipse.collections.impl.block.factory
Classes in org.eclipse.collections.impl.block.factory that implement CharFunctionModifier and TypeClassDescriptionstatic final class
Functions.CharFunctionChain<T1,
T2> private static class
private static final class
private static final class
Fields in org.eclipse.collections.impl.block.factory declared as CharFunctionModifier and TypeFieldDescriptionprivate final CharFunction
<? super T> HashingStrategies.CharFunctionHashingStrategy.function
private final CharFunction
<? super T2> Functions.CharFunctionChain.function2
private static final CharFunction
<String> StringFunctions.TO_FIRST_CHAR
private static final CharFunction
<String> StringFunctions.TO_PRIMITIVE_CHAR
Methods in org.eclipse.collections.impl.block.factory that return CharFunctionModifier and TypeMethodDescriptionstatic CharFunction
<String> StringFunctions.toFirstChar()
static CharFunction
<String> StringFunctions.toPrimitiveChar()
static CharFunction
<Integer> PrimitiveFunctions.unboxIntegerToChar()
Methods in org.eclipse.collections.impl.block.factory with parameters of type CharFunctionModifier and TypeMethodDescriptionstatic <T> SerializableComparator
<T> Comparators.byCharFunction
(CharFunction<T> function) static <T1,
T2> Functions.CharFunctionChain <T1, T2> Functions.chainChar
(Function<T1, T2> function1, CharFunction<? super T2> function2) Functions.FunctionChain.chainChar
(CharFunction<? super T3> function) static <T> HashingStrategy
<T> HashingStrategies.fromCharFunction
(CharFunction<? super T> function) static <T> SerializableComparator
<T> Functions.toCharComparator
(CharFunction<T> function) Constructors in org.eclipse.collections.impl.block.factory with parameters of type CharFunctionModifierConstructorDescriptionprivate
CharFunctionChain
(Function<T1, T2> function1, CharFunction<? super T2> function2) private
CharFunctionHashingStrategy
(CharFunction<? super T> function) -
Uses of CharFunction in org.eclipse.collections.impl.block.procedure
Fields in org.eclipse.collections.impl.block.procedure declared as CharFunctionModifier and TypeFieldDescriptionprotected final CharFunction
<? super T> SumOfCharProcedure.function
Constructors in org.eclipse.collections.impl.block.procedure with parameters of type CharFunction -
Uses of CharFunction in org.eclipse.collections.impl.block.procedure.primitive
Fields in org.eclipse.collections.impl.block.procedure.primitive declared as CharFunctionModifier and TypeFieldDescriptionprivate final CharFunction
<? super T> CollectCharProcedure.charFunction
Constructors in org.eclipse.collections.impl.block.procedure.primitive with parameters of type CharFunctionModifierConstructorDescriptionCollectCharProcedure
(CharFunction<? super T> charFunction, MutableCharCollection targetCollection) -
Uses of CharFunction in org.eclipse.collections.impl.collection
Methods in org.eclipse.collections.impl.collection with parameters of type CharFunctionModifier and TypeMethodDescriptionAbstractSynchronizedRichIterable.collectChar
(CharFunction<? super T> charFunction) <R extends MutableCharCollection>
RAbstractSynchronizedRichIterable.collectChar
(CharFunction<? super T> charFunction, R target) -
Uses of CharFunction in org.eclipse.collections.impl.collection.mutable
Methods in org.eclipse.collections.impl.collection.mutable with parameters of type CharFunctionModifier 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) AbstractSynchronizedMutableCollection.collectChar
(CharFunction<? super T> charFunction) AbstractUnmodifiableMutableCollection.collectChar
(CharFunction<? super T> charFunction) <R extends MutableCharCollection>
RAbstractUnmodifiableMutableCollection.collectChar
(CharFunction<? super T> charFunction, R target) -
Uses of CharFunction in org.eclipse.collections.impl.collector
Methods in org.eclipse.collections.impl.collector with parameters of type CharFunctionModifier 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 CharFunction in org.eclipse.collections.impl.lazy
Methods in org.eclipse.collections.impl.lazy with parameters of type CharFunctionModifier and TypeMethodDescriptionAbstractLazyIterable.collectChar
(CharFunction<? super T> charFunction) -
Uses of CharFunction in org.eclipse.collections.impl.lazy.primitive
Fields in org.eclipse.collections.impl.lazy.primitive declared as CharFunctionModifier and TypeFieldDescriptionprivate final CharFunction
<? super T> CollectCharIterable.CharFunctionToProcedure.function
private final CharFunction
<? super T> CollectCharIterable.function
Constructors in org.eclipse.collections.impl.lazy.primitive with parameters of type CharFunctionModifierConstructorDescriptionprivate
CharFunctionToProcedure
(CharFunction<? super T> function) CollectCharIterable
(LazyIterable<T> adapted, CharFunction<? super T> function) -
Uses of CharFunction in org.eclipse.collections.impl.list.fixed
Methods in org.eclipse.collections.impl.list.fixed with parameters of type CharFunctionModifier and TypeMethodDescriptionEmptyList.sortThisByChar
(CharFunction<? super T> function) SingletonList.sortThisByChar
(CharFunction<? super T> function) -
Uses of CharFunction in org.eclipse.collections.impl.list.immutable
Methods in org.eclipse.collections.impl.list.immutable with parameters of type CharFunctionModifier and TypeMethodDescriptionAbstractImmutableList.collectChar
(CharFunction<? super T> charFunction) -
Uses of CharFunction in org.eclipse.collections.impl.list.mutable
Methods in org.eclipse.collections.impl.list.mutable with parameters of type CharFunctionModifier and TypeMethodDescription<R extends MutableCharCollection>
RFastList.collectChar
(CharFunction<? super T> charFunction, R target) MultiReaderFastList.collectChar
(CharFunction<? super T> charFunction) MultiReaderFastList.UntouchableMutableList.collectChar
(CharFunction<? super T> charFunction) SynchronizedMutableList.collectChar
(CharFunction<? super T> charFunction) UnmodifiableMutableList.collectChar
(CharFunction<? super T> charFunction) AbstractListAdapter.sortThisByChar
(CharFunction<? super T> function) AbstractMutableList.sortThisByChar
(CharFunction<? super T> function) MultiReaderFastList.sortThisByChar
(CharFunction<? super T> function) MultiReaderFastList.UntouchableMutableList.sortThisByChar
(CharFunction<? super T> function) SynchronizedMutableList.sortThisByChar
(CharFunction<? super T> function) UnmodifiableMutableList.sortThisByChar
(CharFunction<? super T> function) -
Uses of CharFunction in org.eclipse.collections.impl.map.immutable
Methods in org.eclipse.collections.impl.map.immutable with parameters of type CharFunctionModifier and TypeMethodDescriptionAbstractImmutableMap.collectChar
(CharFunction<? super V> charFunction) -
Uses of CharFunction in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive with parameters of type CharFunctionModifier and TypeMethodDescriptionImmutableByteObjectEmptyMap.collectChar
(CharFunction<? super V> charFunction) <R extends MutableCharCollection>
RImmutableByteObjectEmptyMap.collectChar
(CharFunction<? super V> charFunction, R target) ImmutableByteObjectHashMap.collectChar
(CharFunction<? super V> charFunction) <R extends MutableCharCollection>
RImmutableByteObjectHashMap.collectChar
(CharFunction<? super V> charFunction, R target) ImmutableByteObjectSingletonMap.collectChar
(CharFunction<? super V> charFunction) <R extends MutableCharCollection>
RImmutableByteObjectSingletonMap.collectChar
(CharFunction<? super V> charFunction, R target) ImmutableCharObjectEmptyMap.collectChar
(CharFunction<? super V> charFunction) <R extends MutableCharCollection>
RImmutableCharObjectEmptyMap.collectChar
(CharFunction<? super V> charFunction, R target) ImmutableCharObjectHashMap.collectChar
(CharFunction<? super V> charFunction) <R extends MutableCharCollection>
RImmutableCharObjectHashMap.collectChar
(CharFunction<? super V> charFunction, R target) ImmutableCharObjectSingletonMap.collectChar
(CharFunction<? super V> charFunction) <R extends MutableCharCollection>
RImmutableCharObjectSingletonMap.collectChar
(CharFunction<? super V> charFunction, R target) ImmutableDoubleObjectEmptyMap.collectChar
(CharFunction<? super V> charFunction) <R extends MutableCharCollection>
RImmutableDoubleObjectEmptyMap.collectChar
(CharFunction<? super V> charFunction, R target) ImmutableDoubleObjectHashMap.collectChar
(CharFunction<? super V> charFunction) <R extends MutableCharCollection>
RImmutableDoubleObjectHashMap.collectChar
(CharFunction<? super V> charFunction, R target) ImmutableDoubleObjectSingletonMap.collectChar
(CharFunction<? super V> charFunction) <R extends MutableCharCollection>
RImmutableDoubleObjectSingletonMap.collectChar
(CharFunction<? super V> charFunction, R target) ImmutableFloatObjectEmptyMap.collectChar
(CharFunction<? super V> charFunction) <R extends MutableCharCollection>
RImmutableFloatObjectEmptyMap.collectChar
(CharFunction<? super V> charFunction, R target) ImmutableFloatObjectHashMap.collectChar
(CharFunction<? super V> charFunction) <R extends MutableCharCollection>
RImmutableFloatObjectHashMap.collectChar
(CharFunction<? super V> charFunction, R target) ImmutableFloatObjectSingletonMap.collectChar
(CharFunction<? super V> charFunction) <R extends MutableCharCollection>
RImmutableFloatObjectSingletonMap.collectChar
(CharFunction<? super V> charFunction, R target) ImmutableIntObjectEmptyMap.collectChar
(CharFunction<? super V> charFunction) <R extends MutableCharCollection>
RImmutableIntObjectEmptyMap.collectChar
(CharFunction<? super V> charFunction, R target) ImmutableIntObjectHashMap.collectChar
(CharFunction<? super V> charFunction) <R extends MutableCharCollection>
RImmutableIntObjectHashMap.collectChar
(CharFunction<? super V> charFunction, R target) ImmutableIntObjectSingletonMap.collectChar
(CharFunction<? super V> charFunction) <R extends MutableCharCollection>
RImmutableIntObjectSingletonMap.collectChar
(CharFunction<? super V> charFunction, R target) ImmutableLongObjectEmptyMap.collectChar
(CharFunction<? super V> charFunction) <R extends MutableCharCollection>
RImmutableLongObjectEmptyMap.collectChar
(CharFunction<? super V> charFunction, R target) ImmutableLongObjectHashMap.collectChar
(CharFunction<? super V> charFunction) <R extends MutableCharCollection>
RImmutableLongObjectHashMap.collectChar
(CharFunction<? super V> charFunction, R target) ImmutableLongObjectSingletonMap.collectChar
(CharFunction<? super V> charFunction) <R extends MutableCharCollection>
RImmutableLongObjectSingletonMap.collectChar
(CharFunction<? super V> charFunction, R target) ImmutableShortObjectEmptyMap.collectChar
(CharFunction<? super V> charFunction) <R extends MutableCharCollection>
RImmutableShortObjectEmptyMap.collectChar
(CharFunction<? super V> charFunction, R target) ImmutableShortObjectHashMap.collectChar
(CharFunction<? super V> charFunction) <R extends MutableCharCollection>
RImmutableShortObjectHashMap.collectChar
(CharFunction<? super V> charFunction, R target) ImmutableShortObjectSingletonMap.collectChar
(CharFunction<? super V> charFunction) <R extends MutableCharCollection>
RImmutableShortObjectSingletonMap.collectChar
(CharFunction<? super V> charFunction, R target) ImmutableByteCharMapFactoryImpl.from
(Iterable<T> iterable, ByteFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) ImmutableCharBooleanMapFactoryImpl.from
(Iterable<T> iterable, CharFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction) ImmutableCharByteMapFactoryImpl.from
(Iterable<T> iterable, CharFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) ImmutableCharCharMapFactoryImpl.from
(Iterable<T> iterable, CharFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) ImmutableCharDoubleMapFactoryImpl.from
(Iterable<T> iterable, CharFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) ImmutableCharFloatMapFactoryImpl.from
(Iterable<T> iterable, CharFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction) ImmutableCharIntMapFactoryImpl.from
(Iterable<T> iterable, CharFunction<? super T> keyFunction, IntFunction<? super T> valueFunction) ImmutableCharLongMapFactoryImpl.from
(Iterable<T> iterable, CharFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) <T,
V> ImmutableCharObjectMap <V> ImmutableCharObjectMapFactoryImpl.from
(Iterable<T> iterable, CharFunction<? super T> keyFunction, Function<? super T, ? extends V> valueFunction) ImmutableCharShortMapFactoryImpl.from
(Iterable<T> iterable, CharFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) ImmutableDoubleCharMapFactoryImpl.from
(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) ImmutableFloatCharMapFactoryImpl.from
(Iterable<T> iterable, FloatFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) ImmutableIntCharMapFactoryImpl.from
(Iterable<T> iterable, IntFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) ImmutableLongCharMapFactoryImpl.from
(Iterable<T> iterable, LongFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) <T,
K> ImmutableObjectCharMap <K> ImmutableObjectCharMapFactoryImpl.from
(Iterable<T> iterable, Function<? super T, ? extends K> keyFunction, CharFunction<? super T> valueFunction) ImmutableShortCharMapFactoryImpl.from
(Iterable<T> iterable, ShortFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) -
Uses of CharFunction in org.eclipse.collections.impl.map.mutable
Methods in org.eclipse.collections.impl.map.mutable with parameters of type CharFunctionModifier and TypeMethodDescriptionAbstractMutableMap.collectChar
(CharFunction<? super V> charFunction) SynchronizedMutableMap.collectChar
(CharFunction<? super V> charFunction) UnmodifiableMutableMap.collectChar
(CharFunction<? super V> charFunction) <R extends MutableCharCollection>
RUnmodifiableMutableMap.collectChar
(CharFunction<? super V> charFunction, R target) -
Uses of CharFunction in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type CharFunctionModifier and TypeMethodDescriptionByteObjectHashMap.collectChar
(CharFunction<? super V> charFunction) CharObjectHashMap.collectChar
(CharFunction<? super V> charFunction) DoubleObjectHashMap.collectChar
(CharFunction<? super V> charFunction) FloatObjectHashMap.collectChar
(CharFunction<? super V> charFunction) IntObjectHashMap.collectChar
(CharFunction<? super V> charFunction) LongObjectHashMap.collectChar
(CharFunction<? super V> charFunction) ShortObjectHashMap.collectChar
(CharFunction<? super V> charFunction) SynchronizedByteObjectMap.collectChar
(CharFunction<? super V> charFunction) <R extends MutableCharCollection>
RSynchronizedByteObjectMap.collectChar
(CharFunction<? super V> charFunction, R target) SynchronizedCharObjectMap.collectChar
(CharFunction<? super V> charFunction) <R extends MutableCharCollection>
RSynchronizedCharObjectMap.collectChar
(CharFunction<? super V> charFunction, R target) SynchronizedDoubleObjectMap.collectChar
(CharFunction<? super V> charFunction) <R extends MutableCharCollection>
RSynchronizedDoubleObjectMap.collectChar
(CharFunction<? super V> charFunction, R target) SynchronizedFloatObjectMap.collectChar
(CharFunction<? super V> charFunction) <R extends MutableCharCollection>
RSynchronizedFloatObjectMap.collectChar
(CharFunction<? super V> charFunction, R target) SynchronizedIntObjectMap.collectChar
(CharFunction<? super V> charFunction) <R extends MutableCharCollection>
RSynchronizedIntObjectMap.collectChar
(CharFunction<? super V> charFunction, R target) SynchronizedLongObjectMap.collectChar
(CharFunction<? super V> charFunction) <R extends MutableCharCollection>
RSynchronizedLongObjectMap.collectChar
(CharFunction<? super V> charFunction, R target) SynchronizedShortObjectMap.collectChar
(CharFunction<? super V> charFunction) <R extends MutableCharCollection>
RSynchronizedShortObjectMap.collectChar
(CharFunction<? super V> charFunction, R target) UnmodifiableByteObjectMap.collectChar
(CharFunction<? super V> charFunction) <R extends MutableCharCollection>
RUnmodifiableByteObjectMap.collectChar
(CharFunction<? super V> charFunction, R target) UnmodifiableCharObjectMap.collectChar
(CharFunction<? super V> charFunction) <R extends MutableCharCollection>
RUnmodifiableCharObjectMap.collectChar
(CharFunction<? super V> charFunction, R target) UnmodifiableDoubleObjectMap.collectChar
(CharFunction<? super V> charFunction) <R extends MutableCharCollection>
RUnmodifiableDoubleObjectMap.collectChar
(CharFunction<? super V> charFunction, R target) UnmodifiableFloatObjectMap.collectChar
(CharFunction<? super V> charFunction) <R extends MutableCharCollection>
RUnmodifiableFloatObjectMap.collectChar
(CharFunction<? super V> charFunction, R target) UnmodifiableIntObjectMap.collectChar
(CharFunction<? super V> charFunction) <R extends MutableCharCollection>
RUnmodifiableIntObjectMap.collectChar
(CharFunction<? super V> charFunction, R target) UnmodifiableLongObjectMap.collectChar
(CharFunction<? super V> charFunction) <R extends MutableCharCollection>
RUnmodifiableLongObjectMap.collectChar
(CharFunction<? super V> charFunction, R target) UnmodifiableShortObjectMap.collectChar
(CharFunction<? super V> charFunction) <R extends MutableCharCollection>
RUnmodifiableShortObjectMap.collectChar
(CharFunction<? super V> charFunction, R target) MutableByteCharMapFactoryImpl.from
(Iterable<T> iterable, ByteFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) MutableCharBooleanMapFactoryImpl.from
(Iterable<T> iterable, CharFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction) MutableCharByteMapFactoryImpl.from
(Iterable<T> iterable, CharFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) MutableCharCharMapFactoryImpl.from
(Iterable<T> iterable, CharFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) MutableCharDoubleMapFactoryImpl.from
(Iterable<T> iterable, CharFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) MutableCharFloatMapFactoryImpl.from
(Iterable<T> iterable, CharFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction) MutableCharIntMapFactoryImpl.from
(Iterable<T> iterable, CharFunction<? super T> keyFunction, IntFunction<? super T> valueFunction) MutableCharLongMapFactoryImpl.from
(Iterable<T> iterable, CharFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) <T,
V> MutableCharObjectMap <V> MutableCharObjectMapFactoryImpl.from
(Iterable<T> iterable, CharFunction<? super T> keyFunction, Function<? super T, ? extends V> valueFunction) MutableCharShortMapFactoryImpl.from
(Iterable<T> iterable, CharFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) MutableDoubleCharMapFactoryImpl.from
(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) MutableFloatCharMapFactoryImpl.from
(Iterable<T> iterable, FloatFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) MutableIntCharMapFactoryImpl.from
(Iterable<T> iterable, IntFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) MutableLongCharMapFactoryImpl.from
(Iterable<T> iterable, LongFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) <T,
K> MutableObjectCharMap <K> MutableObjectCharMapFactoryImpl.from
(Iterable<T> iterable, Function<? super T, ? extends K> keyFunction, CharFunction<? super T> valueFunction) MutableShortCharMapFactoryImpl.from
(Iterable<T> iterable, ShortFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) <P> char
ByteCharHashMap.getIfAbsentPutWith
(byte key, CharFunction<? super P> function, P parameter) <P> char
CharCharHashMap.getIfAbsentPutWith
(char key, CharFunction<? super P> function, P parameter) <P> char
DoubleCharHashMap.getIfAbsentPutWith
(double key, CharFunction<? super P> function, P parameter) <P> char
FloatCharHashMap.getIfAbsentPutWith
(float key, CharFunction<? super P> function, P parameter) <P> char
IntCharHashMap.getIfAbsentPutWith
(int key, CharFunction<? super P> function, P parameter) <P> char
LongCharHashMap.getIfAbsentPutWith
(long key, CharFunction<? super P> function, P parameter) <P> char
ObjectCharHashMap.getIfAbsentPutWith
(K key, CharFunction<? super P> function, P parameter) <P> char
ObjectCharHashMapWithHashingStrategy.getIfAbsentPutWith
(K key, CharFunction<? super P> function, P parameter) <P> char
ShortCharHashMap.getIfAbsentPutWith
(short key, CharFunction<? super P> function, P parameter) <P> char
SynchronizedByteCharMap.getIfAbsentPutWith
(byte key, CharFunction<? super P> function, P parameter) <P> char
SynchronizedCharCharMap.getIfAbsentPutWith
(char key, CharFunction<? super P> function, P parameter) <P> char
SynchronizedDoubleCharMap.getIfAbsentPutWith
(double key, CharFunction<? super P> function, P parameter) <P> char
SynchronizedFloatCharMap.getIfAbsentPutWith
(float key, CharFunction<? super P> function, P parameter) <P> char
SynchronizedIntCharMap.getIfAbsentPutWith
(int key, CharFunction<? super P> function, P parameter) <P> char
SynchronizedLongCharMap.getIfAbsentPutWith
(long key, CharFunction<? super P> function, P parameter) <P> char
SynchronizedObjectCharMap.getIfAbsentPutWith
(K key, CharFunction<? super P> function, P parameter) <P> char
SynchronizedShortCharMap.getIfAbsentPutWith
(short key, CharFunction<? super P> function, P parameter) <P> char
UnmodifiableByteCharMap.getIfAbsentPutWith
(byte key, CharFunction<? super P> function, P parameter) <P> char
UnmodifiableCharCharMap.getIfAbsentPutWith
(char key, CharFunction<? super P> function, P parameter) <P> char
UnmodifiableDoubleCharMap.getIfAbsentPutWith
(double key, CharFunction<? super P> function, P parameter) <P> char
UnmodifiableFloatCharMap.getIfAbsentPutWith
(float key, CharFunction<? super P> function, P parameter) <P> char
UnmodifiableIntCharMap.getIfAbsentPutWith
(int key, CharFunction<? super P> function, P parameter) <P> char
UnmodifiableLongCharMap.getIfAbsentPutWith
(long key, CharFunction<? super P> function, P parameter) <P> char
UnmodifiableObjectCharMap.getIfAbsentPutWith
(K key, CharFunction<? super P> function, P parameter) <P> char
UnmodifiableShortCharMap.getIfAbsentPutWith
(short key, CharFunction<? super P> function, P parameter) char
ObjectCharHashMap.getIfAbsentPutWithKey
(K key, CharFunction<? super K> function) char
ObjectCharHashMapWithHashingStrategy.getIfAbsentPutWithKey
(K key, CharFunction<? super K> function) char
SynchronizedObjectCharMap.getIfAbsentPutWithKey
(K key, CharFunction<? super K> function) char
UnmodifiableObjectCharMap.getIfAbsentPutWithKey
(K key, CharFunction<? super K> function) -
Uses of CharFunction in org.eclipse.collections.impl.map.ordered.mutable
Methods in org.eclipse.collections.impl.map.ordered.mutable with parameters of type CharFunctionModifier and TypeMethodDescriptionOrderedMapAdapter.collectChar
(CharFunction<? super V> charFunction) UnmodifiableMutableOrderedMap.collectChar
(CharFunction<? super V> charFunction) <R extends MutableCharCollection>
RUnmodifiableMutableOrderedMap.collectChar
(CharFunction<? super V> charFunction, R target) -
Uses of CharFunction in org.eclipse.collections.impl.map.sorted.immutable
Methods in org.eclipse.collections.impl.map.sorted.immutable with parameters of type CharFunctionModifier and TypeMethodDescriptionAbstractImmutableSortedMap.collectChar
(CharFunction<? super V> charFunction) -
Uses of CharFunction in org.eclipse.collections.impl.map.sorted.mutable
Methods in org.eclipse.collections.impl.map.sorted.mutable with parameters of type CharFunctionModifier and TypeMethodDescriptionAbstractMutableSortedMap.collectChar
(CharFunction<? super V> charFunction) SynchronizedSortedMap.collectChar
(CharFunction<? super V> charFunction) UnmodifiableTreeMap.collectChar
(CharFunction<? super V> charFunction) <R extends MutableCharCollection>
RUnmodifiableTreeMap.collectChar
(CharFunction<? super V> charFunction, R target) -
Uses of CharFunction in org.eclipse.collections.impl.set.immutable
Methods in org.eclipse.collections.impl.set.immutable with parameters of type CharFunctionModifier and TypeMethodDescriptionAbstractImmutableSet.collectChar
(CharFunction<? super T> charFunction) -
Uses of CharFunction in org.eclipse.collections.impl.set.mutable
Methods in org.eclipse.collections.impl.set.mutable with parameters of type CharFunctionModifier and TypeMethodDescriptionMultiReaderUnifiedSet.collectChar
(CharFunction<? super T> charFunction) MultiReaderUnifiedSet.UntouchableMutableSet.collectChar
(CharFunction<? super T> charFunction) SynchronizedMutableSet.collectChar
(CharFunction<? super T> charFunction) UnmodifiableMutableSet.collectChar
(CharFunction<? super T> charFunction) -
Uses of CharFunction in org.eclipse.collections.impl.set.sorted.immutable
Methods in org.eclipse.collections.impl.set.sorted.immutable with parameters of type CharFunctionModifier and TypeMethodDescriptionAbstractImmutableSortedSet.collectChar
(CharFunction<? super T> charFunction) -
Uses of CharFunction in org.eclipse.collections.impl.set.sorted.mutable
Methods in org.eclipse.collections.impl.set.sorted.mutable with parameters of type CharFunctionModifier and TypeMethodDescriptionSortedSetAdapter.collectChar
(CharFunction<? super T> charFunction) SynchronizedSortedSet.collectChar
(CharFunction<? super T> charFunction) TreeSortedSet.collectChar
(CharFunction<? super T> charFunction) UnmodifiableSortedSet.collectChar
(CharFunction<? super T> charFunction) -
Uses of CharFunction in org.eclipse.collections.impl.stack.immutable
Methods in org.eclipse.collections.impl.stack.immutable with parameters of type CharFunctionModifier and TypeMethodDescriptionImmutableArrayStack.collectChar
(CharFunction<? super T> charFunction) Deprecated.<R extends MutableCharCollection>
RImmutableArrayStack.collectChar
(CharFunction<? super T> charFunction, R target) Deprecated.ImmutableEmptyStack.collectChar
(CharFunction<? super T> charFunction) <R extends MutableCharCollection>
RImmutableEmptyStack.collectChar
(CharFunction<? super T> charFunction, R target) ImmutableNotEmptyStack.collectChar
(CharFunction<? super T> function) -
Uses of CharFunction in org.eclipse.collections.impl.stack.mutable
Methods in org.eclipse.collections.impl.stack.mutable with parameters of type CharFunctionModifier and TypeMethodDescriptionArrayStack.collectChar
(CharFunction<? super T> charFunction) <R extends MutableCharCollection>
RArrayStack.collectChar
(CharFunction<? super T> charFunction, R target) SynchronizedStack.collectChar
(CharFunction<? super T> charFunction) <R extends MutableCharCollection>
RSynchronizedStack.collectChar
(CharFunction<? super T> charFunction, R target) UnmodifiableStack.collectChar
(CharFunction<? super T> charFunction) <R extends MutableCharCollection>
RUnmodifiableStack.collectChar
(CharFunction<? super T> charFunction, R target) -
Uses of CharFunction in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility with parameters of type CharFunctionModifier and TypeMethodDescriptionstatic <T> MutableCharList
ArrayIterate.collectChar
(T[] objectArray, CharFunction<? super T> charFunction) static <T,
R extends MutableCharCollection>
RArrayIterate.collectChar
(T[] objectArray, CharFunction<? super T> charFunction, R target) static <T> MutableCharList
ArrayListIterate.collectChar
(ArrayList<T> list, CharFunction<? super T> charFunction) static <T,
R extends MutableCharCollection>
RArrayListIterate.collectChar
(ArrayList<T> list, CharFunction<? super T> charFunction, R target) static <T> MutableCharCollection
Iterate.collectChar
(Iterable<T> iterable, CharFunction<? super T> charFunction) Returns a newchar
collection with the results of applying the specified charFunction for each element of the iterable.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 specifiedtarget
collection.static <T> MutableCharList
ListIterate.collectChar
(List<T> list, CharFunction<? super T> charFunction) static <T,
R extends MutableCharCollection>
RListIterate.collectChar
(List<T> list, CharFunction<? super T> charFunction, R target) static <K,
V> MutableCharCollection MapIterate.collectChar
(Map<K, V> map, CharFunction<? super V> charFunction) 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) -
Uses of CharFunction in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal with parameters of type CharFunctionModifier and TypeMethodDescriptionstatic <T> MutableCharCollection
IterableIterate.collectChar
(Iterable<T> iterable, CharFunction<? super T> charFunction) static <T,
R extends MutableCharCollection>
RIterableIterate.collectChar
(Iterable<T> iterable, CharFunction<? super T> charFunction, R target) static <T> MutableCharCollection
IteratorIterate.collectChar
(Iterator<T> iterator, CharFunction<? super T> charFunction) static <T,
R extends MutableCharCollection>
RIteratorIterate.collectChar
(Iterator<T> iterator, CharFunction<? super T> charFunction, R target) static <T> MutableCharList
RandomAccessListIterate.collectChar
(List<T> list, CharFunction<? super T> charFunction) static <T,
R extends MutableCharCollection>
RRandomAccessListIterate.collectChar
(List<T> list, CharFunction<? super T> charFunction, R target)