Uses of Interface
org.eclipse.collections.api.block.function.primitive.CharFunction
Packages that use CharFunction
Package
Description
This package contains interfaces for Eclipse Collections API.
This package contains interfaces for Bag API.
This package contains interfaces for SortedBag API.
This package contains interfaces for list API which enhance the performance and functionality of
List.This package contains interfaces for map API which enhance the performance and functionality of
MapThis package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
This package contains mutable and immutable sorted map interfaces.
This package contains interfaces for set API which enhance the performance and functionality of
Set.This package contains interfaces for sorted set API.
This package contains interfaces for stack API.
-
Uses of CharFunction in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type CharFunctionModifier and TypeMethodDescriptionLazyIterable.collectChar(CharFunction<? super T> charFunction) Returns a lazy CharIterable which will transform the underlying iterable data to char values based on the charFunction.RichIterable.collectChar(CharFunction<? super T> charFunction) Returns a new 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 CharFunctionModifier and TypeMethodDescriptionImmutableBag.collectChar(CharFunction<? super T> charFunction) default MutableCharBagMutableBag.collectChar(CharFunction<? super T> charFunction) UnsortedBag.collectChar(CharFunction<? super T> charFunction) -
Uses of CharFunction in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted with parameters of type CharFunctionModifier and TypeMethodDescriptionImmutableSortedBag.collectChar(CharFunction<? super T> charFunction) MutableSortedBag.collectChar(CharFunction<? super T> charFunction) SortedBag.collectChar(CharFunction<? super T> charFunction) -
Uses of CharFunction in org.eclipse.collections.api.collection
Methods in org.eclipse.collections.api.collection with parameters of type CharFunctionModifier and TypeMethodDescriptionImmutableCollection.collectChar(CharFunction<? super T> charFunction) default 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 CharFunctionModifier and TypeMethodDescriptionImmutableByteCharMapFactory.from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anImmutableByteCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableCharBooleanMapFactory.from(Iterable<T> iterable, CharFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction) Creates anImmutableCharBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableCharByteMapFactory.from(Iterable<T> iterable, CharFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) Creates anImmutableCharByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableCharCharMapFactory.from(Iterable<T> iterable, CharFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anImmutableCharCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableCharDoubleMapFactory.from(Iterable<T> iterable, CharFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) Creates anImmutableCharDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableCharFloatMapFactory.from(Iterable<T> iterable, CharFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction) Creates anImmutableCharFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableCharIntMapFactory.from(Iterable<T> iterable, CharFunction<? super T> keyFunction, IntFunction<? super T> valueFunction) Creates anImmutableCharIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableCharLongMapFactory.from(Iterable<T> iterable, CharFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) Creates anImmutableCharLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T,V> ImmutableCharObjectMap<V> ImmutableCharObjectMapFactory.from(Iterable<T> iterable, CharFunction<? super T> keyFunction, Function<? super T, ? extends V> valueFunction) Creates anImmutableCharObjectMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableCharShortMapFactory.from(Iterable<T> iterable, CharFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) Creates anImmutableCharShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableDoubleCharMapFactory.from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anImmutableDoubleCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableFloatCharMapFactory.from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anImmutableFloatCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableIntCharMapFactory.from(Iterable<T> iterable, IntFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anImmutableIntCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableLongCharMapFactory.from(Iterable<T> iterable, LongFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anImmutableLongCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T,K> ImmutableObjectCharMap<K> ImmutableObjectCharMapFactory.from(Iterable<T> iterable, Function<? super T, ? extends K> keyFunction, CharFunction<? super T> valueFunction) Creates anImmutableObjectCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableShortCharMapFactory.from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anImmutableShortCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableByteCharMapFactory.from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anMutableByteCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableCharBooleanMapFactory.from(Iterable<T> iterable, CharFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction) Creates anMutableCharBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableCharByteMapFactory.from(Iterable<T> iterable, CharFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) Creates anMutableCharByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableCharCharMapFactory.from(Iterable<T> iterable, CharFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anMutableCharCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableCharDoubleMapFactory.from(Iterable<T> iterable, CharFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) Creates anMutableCharDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableCharFloatMapFactory.from(Iterable<T> iterable, CharFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction) Creates anMutableCharFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableCharIntMapFactory.from(Iterable<T> iterable, CharFunction<? super T> keyFunction, IntFunction<? super T> valueFunction) Creates anMutableCharIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableCharLongMapFactory.from(Iterable<T> iterable, CharFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) Creates anMutableCharLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T,V> MutableCharObjectMap<V> MutableCharObjectMapFactory.from(Iterable<T> iterable, CharFunction<? super T> keyFunction, Function<? super T, ? extends V> valueFunction) Creates anMutableCharObjectMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableCharShortMapFactory.from(Iterable<T> iterable, CharFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) Creates anMutableCharShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableDoubleCharMapFactory.from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anMutableDoubleCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableFloatCharMapFactory.from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anMutableFloatCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableIntCharMapFactory.from(Iterable<T> iterable, IntFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anMutableIntCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableLongCharMapFactory.from(Iterable<T> iterable, LongFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anMutableLongCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T,K> MutableObjectCharMap<K> MutableObjectCharMapFactory.from(Iterable<T> iterable, Function<? super T, ? extends K> keyFunction, CharFunction<? super T> valueFunction) Creates anMutableObjectCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableShortCharMapFactory.from(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 CharFunctionModifier and TypeMethodDescriptionImmutableList.collectChar(CharFunction<? super T> charFunction) ListIterable.collectChar(CharFunction<? super T> charFunction) default MutableCharListMutableList.collectChar(CharFunction<? super T> charFunction) MultiReaderList.sortThisByChar(CharFunction<? super T> function) MutableList.sortThisByChar(CharFunction<? super T> function) -
Uses of CharFunction in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map with parameters of type CharFunctionModifier and TypeMethodDescriptionImmutableMap.collectChar(CharFunction<? super V> charFunction) ImmutableOrderedMap.collectChar(CharFunction<? super V> charFunction) MutableMap.collectChar(CharFunction<? super V> charFunction) MutableOrderedMap.collectChar(CharFunction<? super V> charFunction) OrderedMap.collectChar(CharFunction<? super V> charFunction) UnsortedMapIterable.collectChar(CharFunction<? super V> charFunction) -
Uses of CharFunction in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type CharFunctionModifier and TypeMethodDescriptionImmutablePrimitiveObjectMap.collectChar(CharFunction<? super V> charFunction) MutablePrimitiveObjectMap.collectChar(CharFunction<? super V> charFunction) PrimitiveObjectMap.collectChar(CharFunction<? super V> charFunction) <P> 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 CharFunctionModifier and TypeMethodDescriptionImmutableSortedMap.collectChar(CharFunction<? super V> charFunction) MutableSortedMap.collectChar(CharFunction<? super V> charFunction) SortedMapIterable.collectChar(CharFunction<? super V> charFunction) -
Uses of CharFunction in org.eclipse.collections.api.ordered
Methods in org.eclipse.collections.api.ordered with parameters of type CharFunctionModifier and TypeMethodDescriptionOrderedIterable.collectChar(CharFunction<? super T> charFunction) ReversibleIterable.collectChar(CharFunction<? super T> charFunction) -
Uses of CharFunction in org.eclipse.collections.api.set
Methods in org.eclipse.collections.api.set with parameters of type CharFunctionModifier and TypeMethodDescriptionImmutableSet.collectChar(CharFunction<? super T> charFunction) default MutableCharSetMutableSet.collectChar(CharFunction<? super T> charFunction) UnsortedSetIterable.collectChar(CharFunction<? super T> charFunction) -
Uses of CharFunction in org.eclipse.collections.api.set.sorted
Methods in org.eclipse.collections.api.set.sorted with parameters of type CharFunctionModifier and TypeMethodDescriptionImmutableSortedSet.collectChar(CharFunction<? super T> charFunction) MutableSortedSet.collectChar(CharFunction<? super T> charFunction) SortedSetIterable.collectChar(CharFunction<? super T> charFunction) -
Uses of CharFunction in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack with parameters of type CharFunctionModifier and TypeMethodDescriptionImmutableStack.collectChar(CharFunction<? super T> charFunction) MutableStack.collectChar(CharFunction<? super T> charFunction) StackIterable.collectChar(CharFunction<? super T> charFunction)