Uses of Interface
org.eclipse.collections.api.block.function.primitive.CharFunction
-
Packages that use CharFunction Package Description org.eclipse.collections.api This package contains interfaces for Eclipse Collections API.org.eclipse.collections.api.bag This package contains interfaces for Bag API.org.eclipse.collections.api.bag.sorted This package contains interfaces for SortedBag API.org.eclipse.collections.api.collection org.eclipse.collections.api.factory.map.primitive org.eclipse.collections.api.list This package contains interfaces for list API which enhance the performance and functionality ofList
.org.eclipse.collections.api.map This package contains interfaces for map API which enhance the performance and functionality ofMap
org.eclipse.collections.api.map.primitive This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.org.eclipse.collections.api.map.sorted This package contains mutable and immutable sorted map interfaces.org.eclipse.collections.api.ordered org.eclipse.collections.api.set This package contains interfaces for set API which enhance the performance and functionality ofSet
.org.eclipse.collections.api.set.sorted This package contains interfaces for sorted set API.org.eclipse.collections.api.stack This package contains interfaces for stack API.org.eclipse.collections.impl This package contains implementations for Eclipse Collections API.org.eclipse.collections.impl.bag org.eclipse.collections.impl.bag.immutable This package contains implementations of theImmutableBag
interface.org.eclipse.collections.impl.bag.mutable This package contains implementations of theMutableBag
interface.org.eclipse.collections.impl.bag.sorted.immutable org.eclipse.collections.impl.bag.sorted.mutable This package contains implementations ofMutableSortedBag
.org.eclipse.collections.impl.bimap org.eclipse.collections.impl.bimap.immutable org.eclipse.collections.impl.bimap.mutable This package contains implementations of theMutableBiMap
interface.org.eclipse.collections.impl.block.comparator.primitive This package contains implementations of theSerializableComparator
interface to compare primitive double, int and long.org.eclipse.collections.impl.block.factory This package contains factory implementations forFunction
,Predicate
,SerializableComparator
andProcedure
.org.eclipse.collections.impl.block.procedure This package contains implementations ofProcedure
andProcedure2
.org.eclipse.collections.impl.block.procedure.primitive This package contains implementations of primitive procedures.org.eclipse.collections.impl.collection org.eclipse.collections.impl.collection.mutable This package contains implementations of theMutableCollection
interface.org.eclipse.collections.impl.collector org.eclipse.collections.impl.lazy This package contains implementations of theLazyIterable
interface.org.eclipse.collections.impl.lazy.primitive This package contains implementations of the lazy primitive iterator interfaces.org.eclipse.collections.impl.list.fixed This package contains implementations of theFixedSizeList
interface.org.eclipse.collections.impl.list.immutable This package contains implementations of theImmutableList
interface.org.eclipse.collections.impl.list.mutable This package contains implementations of theMutableList
interface.org.eclipse.collections.impl.map.immutable This package contains implementations of theImmutableMap
interface.org.eclipse.collections.impl.map.immutable.primitive This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.mutable This package contains implementations of theMutableMap
interface.org.eclipse.collections.impl.map.mutable.primitive This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.ordered.mutable org.eclipse.collections.impl.map.sorted.immutable This package contains implementations of theMutableSortedMap
interface.org.eclipse.collections.impl.map.sorted.mutable This package contains implementations of theMutableSortedMap
interface.org.eclipse.collections.impl.set.immutable This package contains the implementations ofImmutableSet
.org.eclipse.collections.impl.set.mutable This package contains implementations ofMutableSet
.org.eclipse.collections.impl.set.sorted.immutable This package contains implementations ofImmutableSortedSet
.org.eclipse.collections.impl.set.sorted.mutable This package contains implementations ofMutableSortedSet
.org.eclipse.collections.impl.stack.immutable This package contains implementations of theImmutableStack
interface.org.eclipse.collections.impl.stack.mutable This package contains implementations of theMutableStack
interface.org.eclipse.collections.impl.utility This package contains static utilities that provide iteration pattern implementations which work with JCF collections.org.eclipse.collections.impl.utility.internal 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 CharFunction Modifier and Type Method Description LazyCharIterable
LazyIterable. collectChar(CharFunction<? super T> charFunction)
Returns a lazy CharIterable which will transform the underlying iterable data to char values based on the charFunction.CharIterable
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 CharFunction Modifier and Type Method Description ImmutableCharBag
ImmutableBag. collectChar(CharFunction<? super T> charFunction)
default MutableCharBag
MutableBag. collectChar(CharFunction<? super T> charFunction)
CharBag
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 CharFunction Modifier and Type Method Description ImmutableCharList
ImmutableSortedBag. collectChar(CharFunction<? super T> charFunction)
MutableCharList
MutableSortedBag. collectChar(CharFunction<? super T> charFunction)
CharList
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 CharFunction Modifier and Type Method Description ImmutableCharCollection
ImmutableCollection. 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 CharFunction Modifier and Type Method Description <T> ImmutableByteCharMap
ImmutableByteCharMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
Creates anImmutableByteCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableCharBooleanMap
ImmutableCharBooleanMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anImmutableCharBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableCharByteMap
ImmutableCharByteMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
Creates anImmutableCharByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableCharCharMap
ImmutableCharCharMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
Creates anImmutableCharCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableCharDoubleMap
ImmutableCharDoubleMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
Creates anImmutableCharDoubleMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableCharFloatMap
ImmutableCharFloatMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
Creates anImmutableCharFloatMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableCharIntMap
ImmutableCharIntMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
Creates anImmutableCharIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableCharLongMap
ImmutableCharLongMapFactory. from(java.lang.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(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)
Creates anImmutableCharObjectMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableCharShortMap
ImmutableCharShortMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
Creates anImmutableCharShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableDoubleCharMap
ImmutableDoubleCharMapFactory. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
Creates anImmutableDoubleCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableFloatCharMap
ImmutableFloatCharMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
Creates anImmutableFloatCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableIntCharMap
ImmutableIntCharMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
Creates anImmutableIntCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableLongCharMap
ImmutableLongCharMapFactory. from(java.lang.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(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, CharFunction<? super T> valueFunction)
Creates anImmutableObjectCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableShortCharMap
ImmutableShortCharMapFactory. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
Creates anImmutableShortCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableByteCharMap
MutableByteCharMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
Creates anMutableByteCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableCharBooleanMap
MutableCharBooleanMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anMutableCharBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableCharByteMap
MutableCharByteMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
Creates anMutableCharByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableCharCharMap
MutableCharCharMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
Creates anMutableCharCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableCharDoubleMap
MutableCharDoubleMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
Creates anMutableCharDoubleMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableCharFloatMap
MutableCharFloatMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
Creates anMutableCharFloatMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableCharIntMap
MutableCharIntMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
Creates anMutableCharIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableCharLongMap
MutableCharLongMapFactory. from(java.lang.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(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)
Creates anMutableCharObjectMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableCharShortMap
MutableCharShortMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
Creates anMutableCharShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableDoubleCharMap
MutableDoubleCharMapFactory. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
Creates anMutableDoubleCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableFloatCharMap
MutableFloatCharMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
Creates anMutableFloatCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableIntCharMap
MutableIntCharMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
Creates anMutableIntCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableLongCharMap
MutableLongCharMapFactory. from(java.lang.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(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, CharFunction<? super T> valueFunction)
Creates anMutableObjectCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableShortCharMap
MutableShortCharMapFactory. from(java.lang.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 CharFunction Modifier and Type Method Description ImmutableCharList
ImmutableList. collectChar(CharFunction<? super T> charFunction)
CharList
ListIterable. collectChar(CharFunction<? super T> charFunction)
default MutableCharList
MutableList. collectChar(CharFunction<? super T> charFunction)
MultiReaderList<T>
MultiReaderList. sortThisByChar(CharFunction<? super T> function)
MutableList<T>
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 CharFunction Modifier and Type Method Description ImmutableCharBag
ImmutableMap. collectChar(CharFunction<? super V> charFunction)
ImmutableCharList
ImmutableOrderedMap. collectChar(CharFunction<? super V> charFunction)
MutableCharBag
MutableMap. collectChar(CharFunction<? super V> charFunction)
MutableCharList
MutableOrderedMap. collectChar(CharFunction<? super V> charFunction)
CharList
OrderedMap. collectChar(CharFunction<? super V> charFunction)
CharBag
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 CharFunction Modifier and Type Method Description ImmutableCharBag
ImmutablePrimitiveObjectMap. collectChar(CharFunction<? super V> charFunction)
MutableCharBag
MutablePrimitiveObjectMap. collectChar(CharFunction<? super V> charFunction)
CharBag
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 CharFunction Modifier and Type Method Description ImmutableCharList
ImmutableSortedMap. collectChar(CharFunction<? super V> charFunction)
MutableCharList
MutableSortedMap. collectChar(CharFunction<? super V> charFunction)
CharList
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 CharFunction Modifier and Type Method Description OrderedCharIterable
OrderedIterable. collectChar(CharFunction<? super T> charFunction)
ReversibleCharIterable
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 CharFunction Modifier and Type Method Description ImmutableCharSet
ImmutableSet. collectChar(CharFunction<? super T> charFunction)
default MutableCharSet
MutableSet. collectChar(CharFunction<? super T> charFunction)
CharSet
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 CharFunction Modifier and Type Method Description ImmutableCharList
ImmutableSortedSet. collectChar(CharFunction<? super T> charFunction)
MutableCharList
MutableSortedSet. collectChar(CharFunction<? super T> charFunction)
CharList
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 CharFunction Modifier and Type Method Description ImmutableCharStack
ImmutableStack. collectChar(CharFunction<? super T> charFunction)
MutableCharStack
MutableStack. collectChar(CharFunction<? super T> charFunction)
CharStack
StackIterable. collectChar(CharFunction<? super T> charFunction)
-
Uses of CharFunction in org.eclipse.collections.impl
Methods in org.eclipse.collections.impl with parameters of type CharFunction Modifier and Type Method Description CharIterable
UnmodifiableRichIterable. 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 CharFunction Modifier and Type Method Description <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 CharFunction Modifier and Type Method Description ImmutableCharBag
AbstractImmutableBag. collectChar(CharFunction<? super T> charFunction)
ImmutableCharBag
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 CharFunction Modifier and Type Method Description MutableCharBag
MultiReaderHashBag. collectChar(CharFunction<? super T> charFunction)
MutableCharBag
MultiReaderHashBag.UntouchableMutableBag. collectChar(CharFunction<? super T> charFunction)
MutableCharBag
SynchronizedBag. collectChar(CharFunction<? super T> charFunction)
MutableCharBag
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 CharFunction Modifier and Type Method Description ImmutableCharList
AbstractImmutableSortedBag. 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 CharFunction Modifier and Type Method Description MutableCharList
AbstractMutableSortedBag. collectChar(CharFunction<? super T> charFunction)
MutableCharList
SynchronizedSortedBag. collectChar(CharFunction<? super T> charFunction)
MutableCharList
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 CharFunction Modifier and Type Method Description <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 CharFunction Modifier and Type Method Description ImmutableCharBag
AbstractImmutableBiMap. 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 CharFunction Modifier and Type Method Description MutableCharBag
AbstractMutableBiMap. collectChar(CharFunction<? super V> charFunction)
CharIterable
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 CharFunction Modifier and Type Field Description private CharFunction<T>
CharFunctionComparator. function
Constructors in org.eclipse.collections.impl.block.comparator.primitive with parameters of type CharFunction Constructor Description CharFunctionComparator(CharFunction<T> function)
-
Uses of CharFunction in org.eclipse.collections.impl.block.factory
Classes in org.eclipse.collections.impl.block.factory that implement CharFunction Modifier and Type Class Description static class
Functions.CharFunctionChain<T1,T2>
private static class
PrimitiveFunctions.UnboxIntegerToChar
private static class
StringFunctions.ToFirstCharFunction
private static class
StringFunctions.ToPrimitiveCharFunction
Fields in org.eclipse.collections.impl.block.factory declared as CharFunction Modifier and Type Field Description private CharFunction<? super T>
HashingStrategies.CharFunctionHashingStrategy. function
private CharFunction<? super T2>
Functions.CharFunctionChain. function2
private static CharFunction<java.lang.String>
StringFunctions. TO_FIRST_CHAR
private static CharFunction<java.lang.String>
StringFunctions. TO_PRIMITIVE_CHAR
Methods in org.eclipse.collections.impl.block.factory that return CharFunction Modifier and Type Method Description static CharFunction<java.lang.String>
StringFunctions. toFirstChar()
static CharFunction<java.lang.String>
StringFunctions. toPrimitiveChar()
static CharFunction<java.lang.Integer>
PrimitiveFunctions. unboxIntegerToChar()
Methods in org.eclipse.collections.impl.block.factory with parameters of type CharFunction Modifier and Type Method Description static <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.CharFunctionChain<T1,T3>
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 CharFunction Constructor Description CharFunctionChain(Function<T1,T2> function1, CharFunction<? super T2> function2)
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 CharFunction Modifier and Type Field Description protected CharFunction<? super T>
SumOfCharProcedure. function
Constructors in org.eclipse.collections.impl.block.procedure with parameters of type CharFunction Constructor Description SumOfCharProcedure(CharFunction<? super T> function)
-
Uses of CharFunction in org.eclipse.collections.impl.block.procedure.primitive
Fields in org.eclipse.collections.impl.block.procedure.primitive declared as CharFunction Modifier and Type Field Description private CharFunction<? super T>
CollectCharProcedure. charFunction
Constructors in org.eclipse.collections.impl.block.procedure.primitive with parameters of type CharFunction Constructor Description CollectCharProcedure(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 CharFunction Modifier and Type Method Description CharIterable
AbstractSynchronizedRichIterable. 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 CharFunction Modifier and Type Method Description <R extends MutableCharCollection>
RAbstractCollectionAdapter. collectChar(CharFunction<? super T> charFunction, R target)
<R extends MutableCharCollection>
RAbstractMultiReaderMutableCollection. collectChar(CharFunction<? super T> charFunction, R target)
<R extends MutableCharCollection>
RAbstractMultiReaderMutableCollection.UntouchableMutableCollection. collectChar(CharFunction<? super T> charFunction, R target)
MutableCharCollection
AbstractSynchronizedMutableCollection. collectChar(CharFunction<? super T> charFunction)
MutableCharCollection
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 CharFunction Modifier and Type Method Description static <T,R extends MutableCharCollection>
java.util.stream.Collector<T,?,R>Collectors2. collectChar(CharFunction<? super T> function, java.util.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 CharFunction Modifier and Type Method Description LazyCharIterable
AbstractLazyIterable. 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 CharFunction Modifier and Type Field Description private CharFunction<? super T>
CollectCharIterable.CharFunctionToProcedure. function
private CharFunction<? super T>
CollectCharIterable. function
Constructors in org.eclipse.collections.impl.lazy.primitive with parameters of type CharFunction Constructor Description 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 CharFunction Modifier and Type Method Description MutableList<T>
EmptyList. sortThisByChar(CharFunction<? super T> function)
MutableList<T>
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 CharFunction Modifier and Type Method Description ImmutableCharList
AbstractImmutableList. 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 CharFunction Modifier and Type Method Description <R extends MutableCharCollection>
RFastList. collectChar(CharFunction<? super T> charFunction, R target)
MutableCharList
MultiReaderFastList. collectChar(CharFunction<? super T> charFunction)
MutableCharList
MultiReaderFastList.UntouchableMutableList. collectChar(CharFunction<? super T> charFunction)
MutableCharList
SynchronizedMutableList. collectChar(CharFunction<? super T> charFunction)
MutableCharList
UnmodifiableMutableList. collectChar(CharFunction<? super T> charFunction)
MutableList<T>
AbstractListAdapter. sortThisByChar(CharFunction<? super T> function)
MutableList<T>
AbstractMutableList. sortThisByChar(CharFunction<? super T> function)
MultiReaderList<T>
MultiReaderFastList. sortThisByChar(CharFunction<? super T> function)
MutableList<T>
MultiReaderFastList.UntouchableMutableList. sortThisByChar(CharFunction<? super T> function)
MutableList<T>
SynchronizedMutableList. sortThisByChar(CharFunction<? super T> function)
MutableList<T>
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 CharFunction Modifier and Type Method Description ImmutableCharBag
AbstractImmutableMap. 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 CharFunction Modifier and Type Method Description ImmutableCharBag
ImmutableByteObjectEmptyMap. collectChar(CharFunction<? super V> charFunction)
<R extends MutableCharCollection>
RImmutableByteObjectEmptyMap. collectChar(CharFunction<? super V> charFunction, R target)
ImmutableCharBag
ImmutableByteObjectHashMap. collectChar(CharFunction<? super V> charFunction)
<R extends MutableCharCollection>
RImmutableByteObjectHashMap. collectChar(CharFunction<? super V> charFunction, R target)
ImmutableCharBag
ImmutableByteObjectSingletonMap. collectChar(CharFunction<? super V> charFunction)
<R extends MutableCharCollection>
RImmutableByteObjectSingletonMap. collectChar(CharFunction<? super V> charFunction, R target)
ImmutableCharBag
ImmutableCharObjectEmptyMap. collectChar(CharFunction<? super V> charFunction)
<R extends MutableCharCollection>
RImmutableCharObjectEmptyMap. collectChar(CharFunction<? super V> charFunction, R target)
ImmutableCharBag
ImmutableCharObjectHashMap. collectChar(CharFunction<? super V> charFunction)
<R extends MutableCharCollection>
RImmutableCharObjectHashMap. collectChar(CharFunction<? super V> charFunction, R target)
ImmutableCharBag
ImmutableCharObjectSingletonMap. collectChar(CharFunction<? super V> charFunction)
<R extends MutableCharCollection>
RImmutableCharObjectSingletonMap. collectChar(CharFunction<? super V> charFunction, R target)
ImmutableCharBag
ImmutableDoubleObjectEmptyMap. collectChar(CharFunction<? super V> charFunction)
<R extends MutableCharCollection>
RImmutableDoubleObjectEmptyMap. collectChar(CharFunction<? super V> charFunction, R target)
ImmutableCharBag
ImmutableDoubleObjectHashMap. collectChar(CharFunction<? super V> charFunction)
<R extends MutableCharCollection>
RImmutableDoubleObjectHashMap. collectChar(CharFunction<? super V> charFunction, R target)
ImmutableCharBag
ImmutableDoubleObjectSingletonMap. collectChar(CharFunction<? super V> charFunction)
<R extends MutableCharCollection>
RImmutableDoubleObjectSingletonMap. collectChar(CharFunction<? super V> charFunction, R target)
ImmutableCharBag
ImmutableFloatObjectEmptyMap. collectChar(CharFunction<? super V> charFunction)
<R extends MutableCharCollection>
RImmutableFloatObjectEmptyMap. collectChar(CharFunction<? super V> charFunction, R target)
ImmutableCharBag
ImmutableFloatObjectHashMap. collectChar(CharFunction<? super V> charFunction)
<R extends MutableCharCollection>
RImmutableFloatObjectHashMap. collectChar(CharFunction<? super V> charFunction, R target)
ImmutableCharBag
ImmutableFloatObjectSingletonMap. collectChar(CharFunction<? super V> charFunction)
<R extends MutableCharCollection>
RImmutableFloatObjectSingletonMap. collectChar(CharFunction<? super V> charFunction, R target)
ImmutableCharBag
ImmutableIntObjectEmptyMap. collectChar(CharFunction<? super V> charFunction)
<R extends MutableCharCollection>
RImmutableIntObjectEmptyMap. collectChar(CharFunction<? super V> charFunction, R target)
ImmutableCharBag
ImmutableIntObjectHashMap. collectChar(CharFunction<? super V> charFunction)
<R extends MutableCharCollection>
RImmutableIntObjectHashMap. collectChar(CharFunction<? super V> charFunction, R target)
ImmutableCharBag
ImmutableIntObjectSingletonMap. collectChar(CharFunction<? super V> charFunction)
<R extends MutableCharCollection>
RImmutableIntObjectSingletonMap. collectChar(CharFunction<? super V> charFunction, R target)
ImmutableCharBag
ImmutableLongObjectEmptyMap. collectChar(CharFunction<? super V> charFunction)
<R extends MutableCharCollection>
RImmutableLongObjectEmptyMap. collectChar(CharFunction<? super V> charFunction, R target)
ImmutableCharBag
ImmutableLongObjectHashMap. collectChar(CharFunction<? super V> charFunction)
<R extends MutableCharCollection>
RImmutableLongObjectHashMap. collectChar(CharFunction<? super V> charFunction, R target)
ImmutableCharBag
ImmutableLongObjectSingletonMap. collectChar(CharFunction<? super V> charFunction)
<R extends MutableCharCollection>
RImmutableLongObjectSingletonMap. collectChar(CharFunction<? super V> charFunction, R target)
ImmutableCharBag
ImmutableShortObjectEmptyMap. collectChar(CharFunction<? super V> charFunction)
<R extends MutableCharCollection>
RImmutableShortObjectEmptyMap. collectChar(CharFunction<? super V> charFunction, R target)
ImmutableCharBag
ImmutableShortObjectHashMap. collectChar(CharFunction<? super V> charFunction)
<R extends MutableCharCollection>
RImmutableShortObjectHashMap. collectChar(CharFunction<? super V> charFunction, R target)
ImmutableCharBag
ImmutableShortObjectSingletonMap. collectChar(CharFunction<? super V> charFunction)
<R extends MutableCharCollection>
RImmutableShortObjectSingletonMap. collectChar(CharFunction<? super V> charFunction, R target)
<T> ImmutableByteCharMap
ImmutableByteCharMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
<T> ImmutableCharBooleanMap
ImmutableCharBooleanMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
<T> ImmutableCharByteMap
ImmutableCharByteMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
<T> ImmutableCharCharMap
ImmutableCharCharMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
<T> ImmutableCharDoubleMap
ImmutableCharDoubleMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
<T> ImmutableCharFloatMap
ImmutableCharFloatMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
<T> ImmutableCharIntMap
ImmutableCharIntMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
<T> ImmutableCharLongMap
ImmutableCharLongMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)
<T,V>
ImmutableCharObjectMap<V>ImmutableCharObjectMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)
<T> ImmutableCharShortMap
ImmutableCharShortMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
<T> ImmutableDoubleCharMap
ImmutableDoubleCharMapFactoryImpl. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
<T> ImmutableFloatCharMap
ImmutableFloatCharMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
<T> ImmutableIntCharMap
ImmutableIntCharMapFactoryImpl. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
<T> ImmutableLongCharMap
ImmutableLongCharMapFactoryImpl. from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
<T,K>
ImmutableObjectCharMap<K>ImmutableObjectCharMapFactoryImpl. from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, CharFunction<? super T> valueFunction)
<T> ImmutableShortCharMap
ImmutableShortCharMapFactoryImpl. from(java.lang.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 CharFunction Modifier and Type Method Description MutableCharBag
AbstractMutableMap. collectChar(CharFunction<? super V> charFunction)
MutableCharBag
SynchronizedMutableMap. collectChar(CharFunction<? super V> charFunction)
MutableCharBag
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 CharFunction Modifier and Type Method Description MutableCharBag
ByteObjectHashMap. collectChar(CharFunction<? super V> charFunction)
MutableCharBag
CharObjectHashMap. collectChar(CharFunction<? super V> charFunction)
MutableCharBag
DoubleObjectHashMap. collectChar(CharFunction<? super V> charFunction)
MutableCharBag
FloatObjectHashMap. collectChar(CharFunction<? super V> charFunction)
MutableCharBag
IntObjectHashMap. collectChar(CharFunction<? super V> charFunction)
MutableCharBag
LongObjectHashMap. collectChar(CharFunction<? super V> charFunction)
MutableCharBag
ShortObjectHashMap. collectChar(CharFunction<? super V> charFunction)
MutableCharBag
SynchronizedByteObjectMap. collectChar(CharFunction<? super V> charFunction)
<R extends MutableCharCollection>
RSynchronizedByteObjectMap. collectChar(CharFunction<? super V> charFunction, R target)
MutableCharBag
SynchronizedCharObjectMap. collectChar(CharFunction<? super V> charFunction)
<R extends MutableCharCollection>
RSynchronizedCharObjectMap. collectChar(CharFunction<? super V> charFunction, R target)
MutableCharBag
SynchronizedDoubleObjectMap. collectChar(CharFunction<? super V> charFunction)
<R extends MutableCharCollection>
RSynchronizedDoubleObjectMap. collectChar(CharFunction<? super V> charFunction, R target)
MutableCharBag
SynchronizedFloatObjectMap. collectChar(CharFunction<? super V> charFunction)
<R extends MutableCharCollection>
RSynchronizedFloatObjectMap. collectChar(CharFunction<? super V> charFunction, R target)
MutableCharBag
SynchronizedIntObjectMap. collectChar(CharFunction<? super V> charFunction)
<R extends MutableCharCollection>
RSynchronizedIntObjectMap. collectChar(CharFunction<? super V> charFunction, R target)
MutableCharBag
SynchronizedLongObjectMap. collectChar(CharFunction<? super V> charFunction)
<R extends MutableCharCollection>
RSynchronizedLongObjectMap. collectChar(CharFunction<? super V> charFunction, R target)
MutableCharBag
SynchronizedShortObjectMap. collectChar(CharFunction<? super V> charFunction)
<R extends MutableCharCollection>
RSynchronizedShortObjectMap. collectChar(CharFunction<? super V> charFunction, R target)
MutableCharBag
UnmodifiableByteObjectMap. collectChar(CharFunction<? super V> charFunction)
<R extends MutableCharCollection>
RUnmodifiableByteObjectMap. collectChar(CharFunction<? super V> charFunction, R target)
MutableCharBag
UnmodifiableCharObjectMap. collectChar(CharFunction<? super V> charFunction)
<R extends MutableCharCollection>
RUnmodifiableCharObjectMap. collectChar(CharFunction<? super V> charFunction, R target)
MutableCharBag
UnmodifiableDoubleObjectMap. collectChar(CharFunction<? super V> charFunction)
<R extends MutableCharCollection>
RUnmodifiableDoubleObjectMap. collectChar(CharFunction<? super V> charFunction, R target)
MutableCharBag
UnmodifiableFloatObjectMap. collectChar(CharFunction<? super V> charFunction)
<R extends MutableCharCollection>
RUnmodifiableFloatObjectMap. collectChar(CharFunction<? super V> charFunction, R target)
MutableCharBag
UnmodifiableIntObjectMap. collectChar(CharFunction<? super V> charFunction)
<R extends MutableCharCollection>
RUnmodifiableIntObjectMap. collectChar(CharFunction<? super V> charFunction, R target)
MutableCharBag
UnmodifiableLongObjectMap. collectChar(CharFunction<? super V> charFunction)
<R extends MutableCharCollection>
RUnmodifiableLongObjectMap. collectChar(CharFunction<? super V> charFunction, R target)
MutableCharBag
UnmodifiableShortObjectMap. collectChar(CharFunction<? super V> charFunction)
<R extends MutableCharCollection>
RUnmodifiableShortObjectMap. collectChar(CharFunction<? super V> charFunction, R target)
<T> MutableByteCharMap
MutableByteCharMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
<T> MutableCharBooleanMap
MutableCharBooleanMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
<T> MutableCharByteMap
MutableCharByteMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
<T> MutableCharCharMap
MutableCharCharMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
<T> MutableCharDoubleMap
MutableCharDoubleMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
<T> MutableCharFloatMap
MutableCharFloatMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
<T> MutableCharIntMap
MutableCharIntMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
<T> MutableCharLongMap
MutableCharLongMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)
<T,V>
MutableCharObjectMap<V>MutableCharObjectMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)
<T> MutableCharShortMap
MutableCharShortMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
<T> MutableDoubleCharMap
MutableDoubleCharMapFactoryImpl. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
<T> MutableFloatCharMap
MutableFloatCharMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
<T> MutableIntCharMap
MutableIntCharMapFactoryImpl. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
<T> MutableLongCharMap
MutableLongCharMapFactoryImpl. from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
<T,K>
MutableObjectCharMap<K>MutableObjectCharMapFactoryImpl. from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, CharFunction<? super T> valueFunction)
<T> MutableShortCharMap
MutableShortCharMapFactoryImpl. from(java.lang.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 CharFunction Modifier and Type Method Description MutableCharList
OrderedMapAdapter. collectChar(CharFunction<? super V> charFunction)
MutableCharList
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 CharFunction Modifier and Type Method Description ImmutableCharList
AbstractImmutableSortedMap. 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 CharFunction Modifier and Type Method Description MutableCharList
AbstractMutableSortedMap. collectChar(CharFunction<? super V> charFunction)
MutableCharList
SynchronizedSortedMap. collectChar(CharFunction<? super V> charFunction)
MutableCharList
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 CharFunction Modifier and Type Method Description ImmutableCharSet
AbstractImmutableSet. 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 CharFunction Modifier and Type Method Description MutableCharSet
MultiReaderUnifiedSet. collectChar(CharFunction<? super T> charFunction)
MutableCharSet
MultiReaderUnifiedSet.UntouchableMutableSet. collectChar(CharFunction<? super T> charFunction)
MutableCharSet
SynchronizedMutableSet. collectChar(CharFunction<? super T> charFunction)
MutableCharSet
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 CharFunction Modifier and Type Method Description ImmutableCharList
AbstractImmutableSortedSet. 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 CharFunction Modifier and Type Method Description MutableCharList
SortedSetAdapter. collectChar(CharFunction<? super T> charFunction)
MutableCharList
SynchronizedSortedSet. collectChar(CharFunction<? super T> charFunction)
MutableCharList
TreeSortedSet. collectChar(CharFunction<? super T> charFunction)
MutableCharList
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 CharFunction Modifier and Type Method Description ImmutableCharStack
ImmutableArrayStack. collectChar(CharFunction<? super T> charFunction)
Deprecated.<R extends MutableCharCollection>
RImmutableArrayStack. collectChar(CharFunction<? super T> charFunction, R target)
Deprecated.ImmutableCharStack
ImmutableEmptyStack. collectChar(CharFunction<? super T> charFunction)
<R extends MutableCharCollection>
RImmutableEmptyStack. collectChar(CharFunction<? super T> charFunction, R target)
ImmutableCharStack
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 CharFunction Modifier and Type Method Description MutableCharStack
ArrayStack. collectChar(CharFunction<? super T> charFunction)
<R extends MutableCharCollection>
RArrayStack. collectChar(CharFunction<? super T> charFunction, R target)
MutableCharStack
SynchronizedStack. collectChar(CharFunction<? super T> charFunction)
<R extends MutableCharCollection>
RSynchronizedStack. collectChar(CharFunction<? super T> charFunction, R target)
MutableCharStack
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 CharFunction Modifier and Type Method Description static <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(java.util.ArrayList<T> list, CharFunction<? super T> charFunction)
static <T,R extends MutableCharCollection>
RArrayListIterate. collectChar(java.util.ArrayList<T> list, CharFunction<? super T> charFunction, R target)
static <T> MutableCharCollection
Iterate. collectChar(java.lang.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(java.lang.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(java.util.List<T> list, CharFunction<? super T> charFunction)
static <T,R extends MutableCharCollection>
RListIterate. collectChar(java.util.List<T> list, CharFunction<? super T> charFunction, R target)
static <K,V>
MutableCharCollectionMapIterate. collectChar(java.util.Map<K,V> map, CharFunction<? super V> charFunction)
static <K,V,R extends MutableCharCollection>
RMapIterate. collectChar(java.util.Map<K,V> map, CharFunction<? super V> charFunction, R target)
private static <T,R extends MutableCharCollection>
RArrayListIterate. collectCharFromInternalArray(java.util.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 CharFunction Modifier and Type Method Description static <T> MutableCharCollection
IterableIterate. collectChar(java.lang.Iterable<T> iterable, CharFunction<? super T> charFunction)
static <T,R extends MutableCharCollection>
RIterableIterate. collectChar(java.lang.Iterable<T> iterable, CharFunction<? super T> charFunction, R target)
static <T> MutableCharCollection
IteratorIterate. collectChar(java.util.Iterator<T> iterator, CharFunction<? super T> charFunction)
static <T,R extends MutableCharCollection>
RIteratorIterate. collectChar(java.util.Iterator<T> iterator, CharFunction<? super T> charFunction, R target)
static <T> MutableCharList
RandomAccessListIterate. collectChar(java.util.List<T> list, CharFunction<? super T> charFunction)
static <T,R extends MutableCharCollection>
RRandomAccessListIterate. collectChar(java.util.List<T> list, CharFunction<? super T> charFunction, R target)
-