Uses of Interface
org.eclipse.collections.api.block.function.primitive.CharToObjectFunction
-
Packages that use CharToObjectFunction Package Description org.eclipse.collections.api This package contains interfaces for Eclipse Collections API.org.eclipse.collections.api.bag.primitive This package contains API for Primitive Bags with Mutable and Immutable variants.org.eclipse.collections.api.collection.primitive This package contains mutable and immutable primitive collection API.org.eclipse.collections.api.list.primitive This package contains mutable and immutable primitive list API.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.ordered.primitive org.eclipse.collections.api.set.primitive This package contains API for mutable and immutable primitive sets.org.eclipse.collections.api.stack.primitive This package contains mutable and immutable primitive stack API.org.eclipse.collections.impl.bag.immutable.primitive This package contains implementations of the immutable primitive bag interfaces.org.eclipse.collections.impl.bag.mutable.primitive This package contains implementations of the mutable primitive bag interfaces.org.eclipse.collections.impl.block.function.primitive This package contains implementations of primitive functions.org.eclipse.collections.impl.collection.mutable.primitive This package contains implementations of the mutable primitive collection interfaces.org.eclipse.collections.impl.lazy.primitive This package contains implementations of the lazy primitive iterator interfaces.org.eclipse.collections.impl.list.immutable.primitive This package contains implementations of immutable primitive list interfaces and immutable primitive list factory interfaces.org.eclipse.collections.impl.list.mutable.primitive This package contains implementations of the mutable primitive list interfaces.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.primitive This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.primitive org.eclipse.collections.impl.set.immutable.primitive This package contains implementations of the immutable primitive set interfaces.org.eclipse.collections.impl.set.mutable.primitive This package contains implementations of the mutable primitive set interfaces.org.eclipse.collections.impl.stack.immutable.primitive This package contains implementations of the immutable primitive stack interfaces.org.eclipse.collections.impl.stack.mutable.primitive This package contains implementations of the mutable primitive stack interfaces.org.eclipse.collections.impl.string.immutable org.eclipse.collections.impl.utility.internal.primitive org.eclipse.collections.impl.utility.primitive -
-
Uses of CharToObjectFunction in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type CharToObjectFunction Modifier and Type Method Description <V> RichIterable<V>
CharIterable. collect(CharToObjectFunction<? extends V> function)
Returns a new collection with the results of applying the specified function on each element of the source collection.default <V,R extends java.util.Collection<V>>
RCharIterable. collect(CharToObjectFunction<? extends V> function, R target)
Same asCharIterable.collect(CharToObjectFunction)
, only the results are added to the target Collection.<V> LazyIterable<V>
LazyCharIterable. collect(CharToObjectFunction<? extends V> function)
default <V,R extends java.util.Collection<V>>
RCharIterable. flatCollect(CharToObjectFunction<? extends java.lang.Iterable<V>> function, R target)
flatCollect
is a special case ofCharIterable.collect(CharToObjectFunction)
.<V> LazyIterable<V>
LazyCharIterable. flatCollect(CharToObjectFunction<? extends java.lang.Iterable<V>> function)
default <T> MutableCharList
CharIterable. toSortedListBy(CharToObjectFunction<T> function)
Converts the collection to a MutableCharListImplementation sorted based on the natural order of the key returned byfunction
.default <T> MutableCharList
CharIterable. toSortedListBy(CharToObjectFunction<T> function, java.util.Comparator<? super T> comparator)
Converts the collection to a MutableCharList implementation, which is sorted based on the key returned byfunction
using the providedcomparator
. -
Uses of CharToObjectFunction in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive with parameters of type CharToObjectFunction Modifier and Type Method Description <V> Bag<V>
CharBag. collect(CharToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableCharBag. collect(CharToObjectFunction<? extends V> function)
<V> MutableBag<V>
MutableCharBag. collect(CharToObjectFunction<? extends V> function)
-
Uses of CharToObjectFunction in org.eclipse.collections.api.collection.primitive
Methods in org.eclipse.collections.api.collection.primitive with parameters of type CharToObjectFunction Modifier and Type Method Description <V> ImmutableCollection<V>
ImmutableCharCollection. collect(CharToObjectFunction<? extends V> function)
<V> MutableCollection<V>
MutableCharCollection. collect(CharToObjectFunction<? extends V> function)
-
Uses of CharToObjectFunction in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive with parameters of type CharToObjectFunction Modifier and Type Method Description <V> ListIterable<V>
CharList. collect(CharToObjectFunction<? extends V> function)
<V> ImmutableList<V>
ImmutableCharList. collect(CharToObjectFunction<? extends V> function)
<V> MutableList<V>
MutableCharList. collect(CharToObjectFunction<? extends V> function)
default <T> MutableCharList
MutableCharList. sortThisBy(CharToObjectFunction<T> function)
Sorts the internal data structure of this list based on the natural order of the key returned byfunction
.default <T> MutableCharList
MutableCharList. sortThisBy(CharToObjectFunction<T> function, java.util.Comparator<? super T> comparator)
Sorts the internal data structure of this list based on the key returned byfunction
using the providedcomparator
. -
Uses of CharToObjectFunction in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type CharToObjectFunction Modifier and Type Method Description <V> Bag<V>
CharValuesMap. collect(CharToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableByteCharMap. collect(CharToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableCharCharMap. collect(CharToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableDoubleCharMap. collect(CharToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableFloatCharMap. collect(CharToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableIntCharMap. collect(CharToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableLongCharMap. collect(CharToObjectFunction<? extends V> function)
<V> ImmutableCollection<V>
ImmutableObjectCharMap. collect(CharToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableShortCharMap. collect(CharToObjectFunction<? extends V> function)
<V> MutableBag<V>
MutableCharValuesMap. collect(CharToObjectFunction<? extends V> function)
<V> MutableCollection<V>
MutableObjectCharMap. collect(CharToObjectFunction<? extends V> function)
V
MutableCharObjectMap. getIfAbsentPutWithKey(char key, CharToObjectFunction<? extends V> 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 CharToObjectFunction in org.eclipse.collections.api.ordered.primitive
Methods in org.eclipse.collections.api.ordered.primitive with parameters of type CharToObjectFunction Modifier and Type Method Description <V> OrderedIterable<V>
OrderedCharIterable. collect(CharToObjectFunction<? extends V> function)
<V> ReversibleIterable<V>
ReversibleCharIterable. collect(CharToObjectFunction<? extends V> function)
-
Uses of CharToObjectFunction in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive with parameters of type CharToObjectFunction Modifier and Type Method Description <V> SetIterable<V>
CharSet. collect(CharToObjectFunction<? extends V> function)
<V> ImmutableSet<V>
ImmutableCharSet. collect(CharToObjectFunction<? extends V> function)
<V> MutableSet<V>
MutableCharSet. collect(CharToObjectFunction<? extends V> function)
-
Uses of CharToObjectFunction in org.eclipse.collections.api.stack.primitive
Methods in org.eclipse.collections.api.stack.primitive with parameters of type CharToObjectFunction Modifier and Type Method Description <V> StackIterable<V>
CharStack. collect(CharToObjectFunction<? extends V> function)
<V> ImmutableStack<V>
ImmutableCharStack. collect(CharToObjectFunction<? extends V> function)
<V> MutableStack<V>
MutableCharStack. collect(CharToObjectFunction<? extends V> function)
-
Uses of CharToObjectFunction in org.eclipse.collections.impl.bag.immutable.primitive
Methods in org.eclipse.collections.impl.bag.immutable.primitive with parameters of type CharToObjectFunction Modifier and Type Method Description <V> ImmutableBag<V>
ImmutableCharEmptyBag. collect(CharToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableCharHashBag. collect(CharToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableCharSingletonBag. collect(CharToObjectFunction<? extends V> function)
-
Uses of CharToObjectFunction in org.eclipse.collections.impl.bag.mutable.primitive
Methods in org.eclipse.collections.impl.bag.mutable.primitive with parameters of type CharToObjectFunction Modifier and Type Method Description <V> MutableBag<V>
CharHashBag. collect(CharToObjectFunction<? extends V> function)
<V> MutableBag<V>
SynchronizedCharBag. collect(CharToObjectFunction<? extends V> function)
<V> MutableBag<V>
UnmodifiableCharBag. collect(CharToObjectFunction<? extends V> function)
-
Uses of CharToObjectFunction in org.eclipse.collections.impl.block.function.primitive
Classes in org.eclipse.collections.impl.block.function.primitive that implement CharToObjectFunction Modifier and Type Class Description class
CharCaseFunction<V>
This file was automatically generated from template file primitiveCaseFunction.stg.Fields in org.eclipse.collections.impl.block.function.primitive declared as CharToObjectFunction Modifier and Type Field Description private CharToObjectFunction<? extends V>
CharCaseFunction. defaultFunction
Fields in org.eclipse.collections.impl.block.function.primitive with type parameters of type CharToObjectFunction Modifier and Type Field Description private MutableList<Pair<CharPredicate,CharToObjectFunction<? extends V>>>
CharCaseFunction. predicateFunctions
Methods in org.eclipse.collections.impl.block.function.primitive with parameters of type CharToObjectFunction Modifier and Type Method Description CharCaseFunction<V>
CharCaseFunction. addCase(CharPredicate predicate, CharToObjectFunction<? extends V> function)
CharCaseFunction<V>
CharCaseFunction. setDefault(CharToObjectFunction<? extends V> function)
Constructors in org.eclipse.collections.impl.block.function.primitive with parameters of type CharToObjectFunction Constructor Description CharCaseFunction(CharToObjectFunction<? extends V> newDefaultFunction)
-
Uses of CharToObjectFunction in org.eclipse.collections.impl.collection.mutable.primitive
Methods in org.eclipse.collections.impl.collection.mutable.primitive with parameters of type CharToObjectFunction Modifier and Type Method Description <V> MutableCollection<V>
AbstractSynchronizedCharCollection. collect(CharToObjectFunction<? extends V> function)
<V> MutableCollection<V>
AbstractUnmodifiableCharCollection. collect(CharToObjectFunction<? extends V> function)
-
Uses of CharToObjectFunction in org.eclipse.collections.impl.lazy.primitive
Fields in org.eclipse.collections.impl.lazy.primitive declared as CharToObjectFunction Modifier and Type Field Description private CharToObjectFunction<? extends V>
CollectCharToObjectIterable. function
private CharToObjectFunction<? extends java.lang.Iterable<V>>
FlatCollectCharToObjectIterable.FlatCollectCharIterator. function
private CharToObjectFunction<? extends java.lang.Iterable<V>>
FlatCollectCharToObjectIterable. function
Methods in org.eclipse.collections.impl.lazy.primitive with parameters of type CharToObjectFunction Modifier and Type Method Description <V> LazyIterable<V>
AbstractLazyCharIterable. collect(CharToObjectFunction<? extends V> function)
<V> LazyIterable<V>
AbstractLazyCharIterable. flatCollect(CharToObjectFunction<? extends java.lang.Iterable<V>> function)
Constructors in org.eclipse.collections.impl.lazy.primitive with parameters of type CharToObjectFunction Constructor Description CollectCharToObjectIterable(CharIterable iterable, CharToObjectFunction<? extends V> function)
FlatCollectCharIterator(CharIterable iterable, CharToObjectFunction<? extends java.lang.Iterable<V>> newFunction)
FlatCollectCharIterator(CharIterator newIterator, CharToObjectFunction<? extends java.lang.Iterable<V>> newFunction)
FlatCollectCharToObjectIterable(CharIterable iterable, CharToObjectFunction<? extends java.lang.Iterable<V>> function)
-
Uses of CharToObjectFunction in org.eclipse.collections.impl.list.immutable.primitive
Methods in org.eclipse.collections.impl.list.immutable.primitive with parameters of type CharToObjectFunction Modifier and Type Method Description <V> ImmutableList<V>
ImmutableCharArrayList. collect(CharToObjectFunction<? extends V> function)
<V,R extends java.util.Collection<V>>
RImmutableCharArrayList. collect(CharToObjectFunction<? extends V> function, R target)
<V> ImmutableList<V>
ImmutableCharEmptyList. collect(CharToObjectFunction<? extends V> function)
<V> ImmutableList<V>
ImmutableCharSingletonList. collect(CharToObjectFunction<? extends V> function)
-
Uses of CharToObjectFunction in org.eclipse.collections.impl.list.mutable.primitive
Methods in org.eclipse.collections.impl.list.mutable.primitive with parameters of type CharToObjectFunction Modifier and Type Method Description <V> MutableList<V>
CharArrayList. collect(CharToObjectFunction<? extends V> function)
<V,R extends java.util.Collection<V>>
RCharArrayList. collect(CharToObjectFunction<? extends V> function, R target)
<V> MutableList<V>
SynchronizedCharList. collect(CharToObjectFunction<? extends V> function)
<V> MutableList<V>
UnmodifiableCharList. collect(CharToObjectFunction<? extends V> function)
<T> MutableCharList
SynchronizedCharList. sortThisBy(CharToObjectFunction<T> function)
<T> MutableCharList
SynchronizedCharList. sortThisBy(CharToObjectFunction<T> function, java.util.Comparator<? super T> comparator)
-
Uses of CharToObjectFunction in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive with parameters of type CharToObjectFunction Modifier and Type Method Description <V> ImmutableBag<V>
ImmutableByteCharEmptyMap. collect(CharToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableByteCharHashMap. collect(CharToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableByteCharSingletonMap. collect(CharToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableCharCharEmptyMap. collect(CharToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableCharCharHashMap. collect(CharToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableCharCharSingletonMap. collect(CharToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableDoubleCharEmptyMap. collect(CharToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableDoubleCharHashMap. collect(CharToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableDoubleCharSingletonMap. collect(CharToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableFloatCharEmptyMap. collect(CharToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableFloatCharHashMap. collect(CharToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableFloatCharSingletonMap. collect(CharToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableIntCharEmptyMap. collect(CharToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableIntCharHashMap. collect(CharToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableIntCharSingletonMap. collect(CharToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableLongCharEmptyMap. collect(CharToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableLongCharHashMap. collect(CharToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableLongCharSingletonMap. collect(CharToObjectFunction<? extends V> function)
<V> ImmutableCollection<V>
ImmutableObjectCharEmptyMap. collect(CharToObjectFunction<? extends V> function)
<V> ImmutableCollection<V>
ImmutableObjectCharHashMap. collect(CharToObjectFunction<? extends V> function)
<V> ImmutableCollection<V>
ImmutableObjectCharSingletonMap. collect(CharToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableShortCharEmptyMap. collect(CharToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableShortCharHashMap. collect(CharToObjectFunction<? extends V> function)
<V> ImmutableBag<V>
ImmutableShortCharSingletonMap. collect(CharToObjectFunction<? extends V> function)
-
Uses of CharToObjectFunction in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type CharToObjectFunction Modifier and Type Method Description <V> MutableSet<V>
AbstractMutableCharKeySet. collect(CharToObjectFunction<? extends V> function)
<V> MutableCollection<V>
AbstractMutableCharValuesMap.AbstractCharValuesCollection. collect(CharToObjectFunction<? extends V> function)
<V> MutableBag<V>
AbstractMutableCharValuesMap. collect(CharToObjectFunction<? extends V> function)
<V> ImmutableSet<V>
ImmutableCharCharMapKeySet. collect(CharToObjectFunction<? extends V> function)
<V> ImmutableSet<V>
ImmutableCharMapKeySet. collect(CharToObjectFunction<? extends V> function)
<V> MutableCollection<V>
ObjectCharHashMap. collect(CharToObjectFunction<? extends V> function)
<V> MutableCollection<V>
ObjectCharHashMap.ValuesCollection. collect(CharToObjectFunction<? extends V> function)
<V> MutableCollection<V>
ObjectCharHashMapWithHashingStrategy. collect(CharToObjectFunction<? extends V> function)
<V> MutableCollection<V>
ObjectCharHashMapWithHashingStrategy.ValuesCollection. collect(CharToObjectFunction<? extends V> function)
<V> MutableBag<V>
SynchronizedByteCharMap. collect(CharToObjectFunction<? extends V> function)
<V> MutableBag<V>
SynchronizedCharCharMap. collect(CharToObjectFunction<? extends V> function)
<V> MutableBag<V>
SynchronizedDoubleCharMap. collect(CharToObjectFunction<? extends V> function)
<V> MutableBag<V>
SynchronizedFloatCharMap. collect(CharToObjectFunction<? extends V> function)
<V> MutableBag<V>
SynchronizedIntCharMap. collect(CharToObjectFunction<? extends V> function)
<V> MutableBag<V>
SynchronizedLongCharMap. collect(CharToObjectFunction<? extends V> function)
<V1> MutableCollection<V1>
SynchronizedObjectCharMap. collect(CharToObjectFunction<? extends V1> function)
<V> MutableBag<V>
SynchronizedShortCharMap. collect(CharToObjectFunction<? extends V> function)
<V> MutableBag<V>
UnmodifiableByteCharMap. collect(CharToObjectFunction<? extends V> function)
<V> MutableBag<V>
UnmodifiableCharCharMap. collect(CharToObjectFunction<? extends V> function)
<V> MutableBag<V>
UnmodifiableDoubleCharMap. collect(CharToObjectFunction<? extends V> function)
<V> MutableBag<V>
UnmodifiableFloatCharMap. collect(CharToObjectFunction<? extends V> function)
<V> MutableBag<V>
UnmodifiableIntCharMap. collect(CharToObjectFunction<? extends V> function)
<V> MutableBag<V>
UnmodifiableLongCharMap. collect(CharToObjectFunction<? extends V> function)
<V1> MutableCollection<V1>
UnmodifiableObjectCharMap. collect(CharToObjectFunction<? extends V1> function)
<V> MutableBag<V>
UnmodifiableShortCharMap. collect(CharToObjectFunction<? extends V> function)
V
CharObjectHashMap. getIfAbsentPutWithKey(char key, CharToObjectFunction<? extends V> function)
V
SynchronizedCharObjectMap. getIfAbsentPutWithKey(char key, CharToObjectFunction<? extends V> function)
V
UnmodifiableCharObjectMap. getIfAbsentPutWithKey(char key, CharToObjectFunction<? extends V> function)
-
Uses of CharToObjectFunction in org.eclipse.collections.impl.primitive
Methods in org.eclipse.collections.impl.primitive with parameters of type CharToObjectFunction Modifier and Type Method Description <V> RichIterable<V>
SynchronizedCharIterable. collect(CharToObjectFunction<? extends V> function)
-
Uses of CharToObjectFunction in org.eclipse.collections.impl.set.immutable.primitive
Methods in org.eclipse.collections.impl.set.immutable.primitive with parameters of type CharToObjectFunction Modifier and Type Method Description <V> ImmutableSet<V>
ImmutableCharEmptySet. collect(CharToObjectFunction<? extends V> function)
<V> ImmutableSet<V>
ImmutableCharSingletonSet. collect(CharToObjectFunction<? extends V> function)
-
Uses of CharToObjectFunction in org.eclipse.collections.impl.set.mutable.primitive
Methods in org.eclipse.collections.impl.set.mutable.primitive with parameters of type CharToObjectFunction Modifier and Type Method Description <V> MutableSet<V>
CharHashSet. collect(CharToObjectFunction<? extends V> function)
<V,R extends java.util.Collection<V>>
RCharHashSet. collect(CharToObjectFunction<? extends V> function, R target)
<V> ImmutableSet<V>
CharHashSet.ImmutableCharHashSet. collect(CharToObjectFunction<? extends V> function)
<V> MutableSet<V>
SynchronizedCharSet. collect(CharToObjectFunction<? extends V> function)
<V> MutableSet<V>
UnmodifiableCharSet. collect(CharToObjectFunction<? extends V> function)
-
Uses of CharToObjectFunction in org.eclipse.collections.impl.stack.immutable.primitive
Methods in org.eclipse.collections.impl.stack.immutable.primitive with parameters of type CharToObjectFunction Modifier and Type Method Description <V> ImmutableStack<V>
ImmutableCharArrayStack. collect(CharToObjectFunction<? extends V> function)
<V> ImmutableStack<V>
ImmutableCharEmptyStack. collect(CharToObjectFunction<? extends V> function)
<V> ImmutableStack<V>
ImmutableCharSingletonStack. collect(CharToObjectFunction<? extends V> function)
-
Uses of CharToObjectFunction in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive with parameters of type CharToObjectFunction Modifier and Type Method Description <V> MutableStack<V>
CharArrayStack. collect(CharToObjectFunction<? extends V> function)
<V> MutableStack<V>
SynchronizedCharStack. collect(CharToObjectFunction<? extends V> function)
<V> MutableStack<V>
UnmodifiableCharStack. collect(CharToObjectFunction<? extends V> function)
-
Uses of CharToObjectFunction in org.eclipse.collections.impl.string.immutable
Methods in org.eclipse.collections.impl.string.immutable with parameters of type CharToObjectFunction Modifier and Type Method Description <V> ImmutableList<V>
CharAdapter. collect(CharToObjectFunction<? extends V> function)
-
Uses of CharToObjectFunction in org.eclipse.collections.impl.utility.internal.primitive
Methods in org.eclipse.collections.impl.utility.internal.primitive with parameters of type CharToObjectFunction Modifier and Type Method Description static <V,R extends java.util.Collection<V>>
RCharIterableIterate. collect(CharIterable iterable, CharToObjectFunction<? extends V> function, R targetCollection)
static <V,R extends java.util.Collection<V>>
RCharIteratorIterate. collect(CharIterator iterator, CharToObjectFunction<? extends V> function, R targetCollection)
-
Uses of CharToObjectFunction in org.eclipse.collections.impl.utility.primitive
Methods in org.eclipse.collections.impl.utility.primitive with parameters of type CharToObjectFunction Modifier and Type Method Description static <V> LazyIterable<V>
LazyCharIterate. collect(CharIterable iterable, CharToObjectFunction<? extends V> function)
Creates a deferred transforming char iterable for the specified char iterable.static <V> LazyIterable<V>
LazyCharIterate. collectIf(CharIterable iterable, CharPredicate predicate, CharToObjectFunction<? extends V> function)
Creates a deferred filtering and transforming char iterable for the specified char iterable.static <V> LazyIterable<V>
LazyCharIterate. flatCollect(CharIterable iterable, CharToObjectFunction<? extends java.lang.Iterable<V>> function)
Creates a deferred transforming and flattening char iterable for the specified char iterable.
-