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 ofMaporg.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 theImmutableBaginterface.org.eclipse.collections.impl.bag.mutable This package contains implementations of theMutableBaginterface.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 theMutableBiMapinterface.org.eclipse.collections.impl.block.comparator.primitive This package contains implementations of theSerializableComparatorinterface to compare primitive double, int and long.org.eclipse.collections.impl.block.factory This package contains factory implementations forFunction,Predicate,SerializableComparatorandProcedure.org.eclipse.collections.impl.block.procedure This package contains implementations ofProcedureandProcedure2.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 theMutableCollectioninterface.org.eclipse.collections.impl.collector org.eclipse.collections.impl.lazy This package contains implementations of theLazyIterableinterface.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 theFixedSizeListinterface.org.eclipse.collections.impl.list.immutable This package contains implementations of theImmutableListinterface.org.eclipse.collections.impl.list.mutable This package contains implementations of theMutableListinterface.org.eclipse.collections.impl.map.immutable This package contains implementations of theImmutableMapinterface.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 theMutableMapinterface.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.immutable org.eclipse.collections.impl.map.ordered.mutable org.eclipse.collections.impl.map.sorted.immutable This package contains implementations of theMutableSortedMapinterface.org.eclipse.collections.impl.map.sorted.mutable This package contains implementations of theMutableSortedMapinterface.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 theImmutableStackinterface.org.eclipse.collections.impl.stack.mutable This package contains implementations of theMutableStackinterface.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 LazyCharIterableLazyIterable. collectChar(CharFunction<? super T> charFunction)Returns a lazy CharIterable which will transform the underlying iterable data to char values based on the charFunction.CharIterableRichIterable. collectChar(CharFunction<? super T> charFunction)Returns a new primitivechariterable 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 specifiedtargetcollection. -
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 ImmutableCharBagImmutableBag. collectChar(CharFunction<? super T> charFunction)default MutableCharBagMutableBag. collectChar(CharFunction<? super T> charFunction)CharBagUnsortedBag. 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 ImmutableCharListImmutableSortedBag. collectChar(CharFunction<? super T> charFunction)MutableCharListMutableSortedBag. collectChar(CharFunction<? super T> charFunction)CharListSortedBag. 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 ImmutableCharCollectionImmutableCollection. collectChar(CharFunction<? super T> charFunction)default MutableCharCollectionMutableCollection. collectChar(CharFunction<? super T> charFunction)Returns a new primitivechariterable with the results of applying the specified function on each element of the source collection. -
Uses of 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> ImmutableByteCharMapImmutableByteCharMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)Creates anImmutableByteCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableCharBooleanMapImmutableCharBooleanMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anImmutableCharBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableCharByteMapImmutableCharByteMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anImmutableCharByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableCharCharMapImmutableCharCharMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)Creates anImmutableCharCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableCharDoubleMapImmutableCharDoubleMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anImmutableCharDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableCharFloatMapImmutableCharFloatMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)Creates anImmutableCharFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableCharIntMapImmutableCharIntMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anImmutableCharIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableCharLongMapImmutableCharLongMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)Creates anImmutableCharLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T,V>
ImmutableCharObjectMap<V>ImmutableCharObjectMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)Creates anImmutableCharObjectMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableCharShortMapImmutableCharShortMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)Creates anImmutableCharShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableDoubleCharMapImmutableDoubleCharMapFactory. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)Creates anImmutableDoubleCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableFloatCharMapImmutableFloatCharMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)Creates anImmutableFloatCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableIntCharMapImmutableIntCharMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)Creates anImmutableIntCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableLongCharMapImmutableLongCharMapFactory. from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)Creates anImmutableLongCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T,K>
ImmutableObjectCharMap<K>ImmutableObjectCharMapFactory. from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, CharFunction<? super T> valueFunction)Creates anImmutableObjectCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableShortCharMapImmutableShortCharMapFactory. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)Creates anImmutableShortCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableByteCharMapMutableByteCharMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)Creates anMutableByteCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableCharBooleanMapMutableCharBooleanMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anMutableCharBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableCharByteMapMutableCharByteMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anMutableCharByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableCharCharMapMutableCharCharMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)Creates anMutableCharCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableCharDoubleMapMutableCharDoubleMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anMutableCharDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableCharFloatMapMutableCharFloatMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)Creates anMutableCharFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableCharIntMapMutableCharIntMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anMutableCharIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableCharLongMapMutableCharLongMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)Creates anMutableCharLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T,V>
MutableCharObjectMap<V>MutableCharObjectMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)Creates anMutableCharObjectMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableCharShortMapMutableCharShortMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)Creates anMutableCharShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableDoubleCharMapMutableDoubleCharMapFactory. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)Creates anMutableDoubleCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableFloatCharMapMutableFloatCharMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)Creates anMutableFloatCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableIntCharMapMutableIntCharMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)Creates anMutableIntCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableLongCharMapMutableLongCharMapFactory. from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)Creates anMutableLongCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T,K>
MutableObjectCharMap<K>MutableObjectCharMapFactory. from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, CharFunction<? super T> valueFunction)Creates anMutableObjectCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableShortCharMapMutableShortCharMapFactory. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)Creates anMutableShortCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction. -
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 ImmutableCharListImmutableList. collectChar(CharFunction<? super T> charFunction)CharListListIterable. collectChar(CharFunction<? super T> charFunction)default MutableCharListMutableList. 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 ImmutableCharBagImmutableMap. collectChar(CharFunction<? super V> charFunction)ImmutableCharListImmutableOrderedMap. collectChar(CharFunction<? super V> charFunction)MutableCharBagMutableMap. collectChar(CharFunction<? super V> charFunction)MutableCharListMutableOrderedMap. collectChar(CharFunction<? super V> charFunction)CharListOrderedMap. collectChar(CharFunction<? super V> charFunction)CharBagUnsortedMapIterable. 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 ImmutableCharBagImmutablePrimitiveObjectMap. collectChar(CharFunction<? super V> charFunction)MutableCharBagMutablePrimitiveObjectMap. collectChar(CharFunction<? super V> charFunction)CharBagPrimitiveObjectMap. collectChar(CharFunction<? super V> charFunction)<P> charMutableByteCharMap. 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> charMutableCharCharMap. 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> charMutableDoubleCharMap. 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> charMutableFloatCharMap. 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> charMutableIntCharMap. 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> charMutableLongCharMap. 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> charMutableObjectCharMap. 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> charMutableShortCharMap. 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.charMutableObjectCharMap. 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 ImmutableCharListImmutableSortedMap. collectChar(CharFunction<? super V> charFunction)MutableCharListMutableSortedMap. collectChar(CharFunction<? super V> charFunction)CharListSortedMapIterable. 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 OrderedCharIterableOrderedIterable. collectChar(CharFunction<? super T> charFunction)ReversibleCharIterableReversibleIterable. 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 ImmutableCharSetImmutableSet. collectChar(CharFunction<? super T> charFunction)default MutableCharSetMutableSet. collectChar(CharFunction<? super T> charFunction)CharSetUnsortedSetIterable. 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 ImmutableCharListImmutableSortedSet. collectChar(CharFunction<? super T> charFunction)MutableCharListMutableSortedSet. collectChar(CharFunction<? super T> charFunction)CharListSortedSetIterable. 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 ImmutableCharStackImmutableStack. collectChar(CharFunction<? super T> charFunction)MutableCharStackMutableStack. collectChar(CharFunction<? super T> charFunction)CharStackStackIterable. 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 CharIterableUnmodifiableRichIterable. 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 ImmutableCharBagAbstractImmutableBag. collectChar(CharFunction<? super T> charFunction)ImmutableCharBagImmutableEmptyBag. 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 MutableCharBagMultiReaderHashBag. collectChar(CharFunction<? super T> charFunction)MutableCharBagMultiReaderHashBag.UntouchableMutableBag. collectChar(CharFunction<? super T> charFunction)MutableCharBagSynchronizedBag. collectChar(CharFunction<? super T> charFunction)MutableCharBagUnmodifiableBag. 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 ImmutableCharListAbstractImmutableSortedBag. 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 MutableCharListAbstractMutableSortedBag. collectChar(CharFunction<? super T> charFunction)MutableCharListSynchronizedSortedBag. collectChar(CharFunction<? super T> charFunction)MutableCharListUnmodifiableSortedBag. 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 ImmutableCharBagAbstractImmutableBiMap. 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 MutableCharBagAbstractMutableBiMap. collectChar(CharFunction<? super V> charFunction)CharIterableUnmodifiableBiMap. 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. functionConstructors 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 classFunctions.CharFunctionChain<T1,T2>private static classPrimitiveFunctions.UnboxIntegerToCharprivate static classStringFunctions.ToFirstCharFunctionprivate static classStringFunctions.ToPrimitiveCharFunctionFields in org.eclipse.collections.impl.block.factory declared as CharFunction Modifier and Type Field Description private CharFunction<? super T>HashingStrategies.CharFunctionHashingStrategy. functionprivate CharFunction<? super T2>Functions.CharFunctionChain. function2private static CharFunction<java.lang.String>StringFunctions. TO_FIRST_CHARprivate static CharFunction<java.lang.String>StringFunctions. TO_PRIMITIVE_CHARMethods 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. functionConstructors 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. charFunctionConstructors 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 CharIterableAbstractSynchronizedRichIterable. 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)MutableCharCollectionAbstractSynchronizedMutableCollection. collectChar(CharFunction<? super T> charFunction)MutableCharCollectionAbstractUnmodifiableMutableCollection. 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 LazyCharIterableAbstractLazyIterable. 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. functionprivate CharFunction<? super T>CollectCharIterable. functionConstructors 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 ImmutableCharListAbstractImmutableList. 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)MutableCharListMultiReaderFastList. collectChar(CharFunction<? super T> charFunction)MutableCharListMultiReaderFastList.UntouchableMutableList. collectChar(CharFunction<? super T> charFunction)MutableCharListSynchronizedMutableList. collectChar(CharFunction<? super T> charFunction)MutableCharListUnmodifiableMutableList. 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 ImmutableCharBagAbstractImmutableMap. 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 ImmutableCharBagImmutableByteObjectEmptyMap. collectChar(CharFunction<? super V> charFunction)<R extends MutableCharCollection>
RImmutableByteObjectEmptyMap. collectChar(CharFunction<? super V> charFunction, R target)ImmutableCharBagImmutableByteObjectHashMap. collectChar(CharFunction<? super V> charFunction)<R extends MutableCharCollection>
RImmutableByteObjectHashMap. collectChar(CharFunction<? super V> charFunction, R target)ImmutableCharBagImmutableByteObjectSingletonMap. collectChar(CharFunction<? super V> charFunction)<R extends MutableCharCollection>
RImmutableByteObjectSingletonMap. collectChar(CharFunction<? super V> charFunction, R target)ImmutableCharBagImmutableCharObjectEmptyMap. collectChar(CharFunction<? super V> charFunction)<R extends MutableCharCollection>
RImmutableCharObjectEmptyMap. collectChar(CharFunction<? super V> charFunction, R target)ImmutableCharBagImmutableCharObjectHashMap. collectChar(CharFunction<? super V> charFunction)<R extends MutableCharCollection>
RImmutableCharObjectHashMap. collectChar(CharFunction<? super V> charFunction, R target)ImmutableCharBagImmutableCharObjectSingletonMap. collectChar(CharFunction<? super V> charFunction)<R extends MutableCharCollection>
RImmutableCharObjectSingletonMap. collectChar(CharFunction<? super V> charFunction, R target)ImmutableCharBagImmutableDoubleObjectEmptyMap. collectChar(CharFunction<? super V> charFunction)<R extends MutableCharCollection>
RImmutableDoubleObjectEmptyMap. collectChar(CharFunction<? super V> charFunction, R target)ImmutableCharBagImmutableDoubleObjectHashMap. collectChar(CharFunction<? super V> charFunction)<R extends MutableCharCollection>
RImmutableDoubleObjectHashMap. collectChar(CharFunction<? super V> charFunction, R target)ImmutableCharBagImmutableDoubleObjectSingletonMap. collectChar(CharFunction<? super V> charFunction)<R extends MutableCharCollection>
RImmutableDoubleObjectSingletonMap. collectChar(CharFunction<? super V> charFunction, R target)ImmutableCharBagImmutableFloatObjectEmptyMap. collectChar(CharFunction<? super V> charFunction)<R extends MutableCharCollection>
RImmutableFloatObjectEmptyMap. collectChar(CharFunction<? super V> charFunction, R target)ImmutableCharBagImmutableFloatObjectHashMap. collectChar(CharFunction<? super V> charFunction)<R extends MutableCharCollection>
RImmutableFloatObjectHashMap. collectChar(CharFunction<? super V> charFunction, R target)ImmutableCharBagImmutableFloatObjectSingletonMap. collectChar(CharFunction<? super V> charFunction)<R extends MutableCharCollection>
RImmutableFloatObjectSingletonMap. collectChar(CharFunction<? super V> charFunction, R target)ImmutableCharBagImmutableIntObjectEmptyMap. collectChar(CharFunction<? super V> charFunction)<R extends MutableCharCollection>
RImmutableIntObjectEmptyMap. collectChar(CharFunction<? super V> charFunction, R target)ImmutableCharBagImmutableIntObjectHashMap. collectChar(CharFunction<? super V> charFunction)<R extends MutableCharCollection>
RImmutableIntObjectHashMap. collectChar(CharFunction<? super V> charFunction, R target)ImmutableCharBagImmutableIntObjectSingletonMap. collectChar(CharFunction<? super V> charFunction)<R extends MutableCharCollection>
RImmutableIntObjectSingletonMap. collectChar(CharFunction<? super V> charFunction, R target)ImmutableCharBagImmutableLongObjectEmptyMap. collectChar(CharFunction<? super V> charFunction)<R extends MutableCharCollection>
RImmutableLongObjectEmptyMap. collectChar(CharFunction<? super V> charFunction, R target)ImmutableCharBagImmutableLongObjectHashMap. collectChar(CharFunction<? super V> charFunction)<R extends MutableCharCollection>
RImmutableLongObjectHashMap. collectChar(CharFunction<? super V> charFunction, R target)ImmutableCharBagImmutableLongObjectSingletonMap. collectChar(CharFunction<? super V> charFunction)<R extends MutableCharCollection>
RImmutableLongObjectSingletonMap. collectChar(CharFunction<? super V> charFunction, R target)ImmutableCharBagImmutableShortObjectEmptyMap. collectChar(CharFunction<? super V> charFunction)<R extends MutableCharCollection>
RImmutableShortObjectEmptyMap. collectChar(CharFunction<? super V> charFunction, R target)ImmutableCharBagImmutableShortObjectHashMap. collectChar(CharFunction<? super V> charFunction)<R extends MutableCharCollection>
RImmutableShortObjectHashMap. collectChar(CharFunction<? super V> charFunction, R target)ImmutableCharBagImmutableShortObjectSingletonMap. collectChar(CharFunction<? super V> charFunction)<R extends MutableCharCollection>
RImmutableShortObjectSingletonMap. collectChar(CharFunction<? super V> charFunction, R target)<T> ImmutableByteCharMapImmutableByteCharMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)<T> ImmutableCharBooleanMapImmutableCharBooleanMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)<T> ImmutableCharByteMapImmutableCharByteMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)<T> ImmutableCharCharMapImmutableCharCharMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)<T> ImmutableCharDoubleMapImmutableCharDoubleMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)<T> ImmutableCharFloatMapImmutableCharFloatMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)<T> ImmutableCharIntMapImmutableCharIntMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)<T> ImmutableCharLongMapImmutableCharLongMapFactoryImpl. 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> ImmutableCharShortMapImmutableCharShortMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)<T> ImmutableDoubleCharMapImmutableDoubleCharMapFactoryImpl. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)<T> ImmutableFloatCharMapImmutableFloatCharMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)<T> ImmutableIntCharMapImmutableIntCharMapFactoryImpl. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)<T> ImmutableLongCharMapImmutableLongCharMapFactoryImpl. 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> ImmutableShortCharMapImmutableShortCharMapFactoryImpl. 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 MutableCharBagAbstractMutableMap. collectChar(CharFunction<? super V> charFunction)MutableCharBagSynchronizedMutableMap. collectChar(CharFunction<? super V> charFunction)MutableCharBagUnmodifiableMutableMap. 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 MutableCharBagByteObjectHashMap. collectChar(CharFunction<? super V> charFunction)MutableCharBagCharObjectHashMap. collectChar(CharFunction<? super V> charFunction)MutableCharBagDoubleObjectHashMap. collectChar(CharFunction<? super V> charFunction)MutableCharBagFloatObjectHashMap. collectChar(CharFunction<? super V> charFunction)MutableCharBagIntObjectHashMap. collectChar(CharFunction<? super V> charFunction)MutableCharBagLongObjectHashMap. collectChar(CharFunction<? super V> charFunction)MutableCharBagShortObjectHashMap. collectChar(CharFunction<? super V> charFunction)MutableCharBagSynchronizedByteObjectMap. collectChar(CharFunction<? super V> charFunction)<R extends MutableCharCollection>
RSynchronizedByteObjectMap. collectChar(CharFunction<? super V> charFunction, R target)MutableCharBagSynchronizedCharObjectMap. collectChar(CharFunction<? super V> charFunction)<R extends MutableCharCollection>
RSynchronizedCharObjectMap. collectChar(CharFunction<? super V> charFunction, R target)MutableCharBagSynchronizedDoubleObjectMap. collectChar(CharFunction<? super V> charFunction)<R extends MutableCharCollection>
RSynchronizedDoubleObjectMap. collectChar(CharFunction<? super V> charFunction, R target)MutableCharBagSynchronizedFloatObjectMap. collectChar(CharFunction<? super V> charFunction)<R extends MutableCharCollection>
RSynchronizedFloatObjectMap. collectChar(CharFunction<? super V> charFunction, R target)MutableCharBagSynchronizedIntObjectMap. collectChar(CharFunction<? super V> charFunction)<R extends MutableCharCollection>
RSynchronizedIntObjectMap. collectChar(CharFunction<? super V> charFunction, R target)MutableCharBagSynchronizedLongObjectMap. collectChar(CharFunction<? super V> charFunction)<R extends MutableCharCollection>
RSynchronizedLongObjectMap. collectChar(CharFunction<? super V> charFunction, R target)MutableCharBagSynchronizedShortObjectMap. collectChar(CharFunction<? super V> charFunction)<R extends MutableCharCollection>
RSynchronizedShortObjectMap. collectChar(CharFunction<? super V> charFunction, R target)MutableCharBagUnmodifiableByteObjectMap. collectChar(CharFunction<? super V> charFunction)<R extends MutableCharCollection>
RUnmodifiableByteObjectMap. collectChar(CharFunction<? super V> charFunction, R target)MutableCharBagUnmodifiableCharObjectMap. collectChar(CharFunction<? super V> charFunction)<R extends MutableCharCollection>
RUnmodifiableCharObjectMap. collectChar(CharFunction<? super V> charFunction, R target)MutableCharBagUnmodifiableDoubleObjectMap. collectChar(CharFunction<? super V> charFunction)<R extends MutableCharCollection>
RUnmodifiableDoubleObjectMap. collectChar(CharFunction<? super V> charFunction, R target)MutableCharBagUnmodifiableFloatObjectMap. collectChar(CharFunction<? super V> charFunction)<R extends MutableCharCollection>
RUnmodifiableFloatObjectMap. collectChar(CharFunction<? super V> charFunction, R target)MutableCharBagUnmodifiableIntObjectMap. collectChar(CharFunction<? super V> charFunction)<R extends MutableCharCollection>
RUnmodifiableIntObjectMap. collectChar(CharFunction<? super V> charFunction, R target)MutableCharBagUnmodifiableLongObjectMap. collectChar(CharFunction<? super V> charFunction)<R extends MutableCharCollection>
RUnmodifiableLongObjectMap. collectChar(CharFunction<? super V> charFunction, R target)MutableCharBagUnmodifiableShortObjectMap. collectChar(CharFunction<? super V> charFunction)<R extends MutableCharCollection>
RUnmodifiableShortObjectMap. collectChar(CharFunction<? super V> charFunction, R target)<T> MutableByteCharMapMutableByteCharMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)<T> MutableCharBooleanMapMutableCharBooleanMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)<T> MutableCharByteMapMutableCharByteMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)<T> MutableCharCharMapMutableCharCharMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)<T> MutableCharDoubleMapMutableCharDoubleMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)<T> MutableCharFloatMapMutableCharFloatMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)<T> MutableCharIntMapMutableCharIntMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)<T> MutableCharLongMapMutableCharLongMapFactoryImpl. 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> MutableCharShortMapMutableCharShortMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)<T> MutableDoubleCharMapMutableDoubleCharMapFactoryImpl. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)<T> MutableFloatCharMapMutableFloatCharMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)<T> MutableIntCharMapMutableIntCharMapFactoryImpl. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)<T> MutableLongCharMapMutableLongCharMapFactoryImpl. 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> MutableShortCharMapMutableShortCharMapFactoryImpl. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)<P> charByteCharHashMap. getIfAbsentPutWith(byte key, CharFunction<? super P> function, P parameter)<P> charCharCharHashMap. getIfAbsentPutWith(char key, CharFunction<? super P> function, P parameter)<P> charDoubleCharHashMap. getIfAbsentPutWith(double key, CharFunction<? super P> function, P parameter)<P> charFloatCharHashMap. getIfAbsentPutWith(float key, CharFunction<? super P> function, P parameter)<P> charIntCharHashMap. getIfAbsentPutWith(int key, CharFunction<? super P> function, P parameter)<P> charLongCharHashMap. getIfAbsentPutWith(long key, CharFunction<? super P> function, P parameter)<P> charObjectCharHashMap. getIfAbsentPutWith(K key, CharFunction<? super P> function, P parameter)<P> charObjectCharHashMapWithHashingStrategy. getIfAbsentPutWith(K key, CharFunction<? super P> function, P parameter)<P> charShortCharHashMap. getIfAbsentPutWith(short key, CharFunction<? super P> function, P parameter)<P> charSynchronizedByteCharMap. getIfAbsentPutWith(byte key, CharFunction<? super P> function, P parameter)<P> charSynchronizedCharCharMap. getIfAbsentPutWith(char key, CharFunction<? super P> function, P parameter)<P> charSynchronizedDoubleCharMap. getIfAbsentPutWith(double key, CharFunction<? super P> function, P parameter)<P> charSynchronizedFloatCharMap. getIfAbsentPutWith(float key, CharFunction<? super P> function, P parameter)<P> charSynchronizedIntCharMap. getIfAbsentPutWith(int key, CharFunction<? super P> function, P parameter)<P> charSynchronizedLongCharMap. getIfAbsentPutWith(long key, CharFunction<? super P> function, P parameter)<P> charSynchronizedObjectCharMap. getIfAbsentPutWith(K key, CharFunction<? super P> function, P parameter)<P> charSynchronizedShortCharMap. getIfAbsentPutWith(short key, CharFunction<? super P> function, P parameter)<P> charUnmodifiableByteCharMap. getIfAbsentPutWith(byte key, CharFunction<? super P> function, P parameter)<P> charUnmodifiableCharCharMap. getIfAbsentPutWith(char key, CharFunction<? super P> function, P parameter)<P> charUnmodifiableDoubleCharMap. getIfAbsentPutWith(double key, CharFunction<? super P> function, P parameter)<P> charUnmodifiableFloatCharMap. getIfAbsentPutWith(float key, CharFunction<? super P> function, P parameter)<P> charUnmodifiableIntCharMap. getIfAbsentPutWith(int key, CharFunction<? super P> function, P parameter)<P> charUnmodifiableLongCharMap. getIfAbsentPutWith(long key, CharFunction<? super P> function, P parameter)<P> charUnmodifiableObjectCharMap. getIfAbsentPutWith(K key, CharFunction<? super P> function, P parameter)<P> charUnmodifiableShortCharMap. getIfAbsentPutWith(short key, CharFunction<? super P> function, P parameter)charObjectCharHashMap. getIfAbsentPutWithKey(K key, CharFunction<? super K> function)charObjectCharHashMapWithHashingStrategy. getIfAbsentPutWithKey(K key, CharFunction<? super K> function)charSynchronizedObjectCharMap. getIfAbsentPutWithKey(K key, CharFunction<? super K> function)charUnmodifiableObjectCharMap. getIfAbsentPutWithKey(K key, CharFunction<? super K> function) -
Uses of CharFunction in org.eclipse.collections.impl.map.ordered.immutable
Methods in org.eclipse.collections.impl.map.ordered.immutable with parameters of type CharFunction Modifier and Type Method Description ImmutableCharListImmutableOrderedMapAdapter. collectChar(CharFunction<? super V> charFunction) -
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 MutableCharListOrderedMapAdapter. collectChar(CharFunction<? super V> charFunction)MutableCharListUnmodifiableMutableOrderedMap. 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 ImmutableCharListAbstractImmutableSortedMap. 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 MutableCharListAbstractMutableSortedMap. collectChar(CharFunction<? super V> charFunction)MutableCharListSynchronizedSortedMap. collectChar(CharFunction<? super V> charFunction)MutableCharListUnmodifiableTreeMap. 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 ImmutableCharSetAbstractImmutableSet. 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 MutableCharSetMultiReaderUnifiedSet. collectChar(CharFunction<? super T> charFunction)MutableCharSetMultiReaderUnifiedSet.UntouchableMutableSet. collectChar(CharFunction<? super T> charFunction)MutableCharSetSynchronizedMutableSet. collectChar(CharFunction<? super T> charFunction)MutableCharSetUnmodifiableMutableSet. 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 ImmutableCharListAbstractImmutableSortedSet. 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 MutableCharListSortedSetAdapter. collectChar(CharFunction<? super T> charFunction)MutableCharListSynchronizedSortedSet. collectChar(CharFunction<? super T> charFunction)MutableCharListTreeSortedSet. collectChar(CharFunction<? super T> charFunction)MutableCharListUnmodifiableSortedSet. 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 ImmutableCharStackImmutableArrayStack. collectChar(CharFunction<? super T> charFunction)Deprecated.<R extends MutableCharCollection>
RImmutableArrayStack. collectChar(CharFunction<? super T> charFunction, R target)Deprecated.ImmutableCharStackImmutableEmptyStack. collectChar(CharFunction<? super T> charFunction)<R extends MutableCharCollection>
RImmutableEmptyStack. collectChar(CharFunction<? super T> charFunction, R target)ImmutableCharStackImmutableNotEmptyStack. 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 MutableCharStackArrayStack. collectChar(CharFunction<? super T> charFunction)<R extends MutableCharCollection>
RArrayStack. collectChar(CharFunction<? super T> charFunction, R target)MutableCharStackSynchronizedStack. collectChar(CharFunction<? super T> charFunction)<R extends MutableCharCollection>
RSynchronizedStack. collectChar(CharFunction<? super T> charFunction, R target)MutableCharStackUnmodifiableStack. 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> MutableCharListArrayIterate. collectChar(T[] objectArray, CharFunction<? super T> charFunction)static <T,R extends MutableCharCollection>
RArrayIterate. collectChar(T[] objectArray, CharFunction<? super T> charFunction, R target)static <T> MutableCharListArrayListIterate. 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> MutableCharCollectionIterate. collectChar(java.lang.Iterable<T> iterable, CharFunction<? super T> charFunction)Returns a newcharcollection with the results of applying the specified charFunction for each element of the iterable.static <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 specifiedtargetcollection.static <T> MutableCharListListIterate. 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 <R extends MutableCharCollection,T>
RInternalArrayIterate. collectChar(T[] items, int size, CharFunction<? super T> charFunction, R target)Adds all array elements to the target MutableCharCollection after using the function supplied to convert each source element to the appropriate typestatic <T> MutableCharCollectionIterableIterate. 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> MutableCharCollectionIteratorIterate. 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> MutableCharListRandomAccessListIterate. 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)
-